Add Pinpoint presentation software

+21
+19
pkgs/applications/office/pinpoint/default.nix
··· 1 + { fetchurl, stdenv, pkgconfig, autoconf, automake, clutter, clutter-gst 2 + , gdk_pixbuf, cairo }: 3 + 4 + stdenv.mkDerivation rec { 5 + name = "pinpoint-${version}"; 6 + version = "0.1.4"; 7 + src = fetchurl { 8 + url = "http://ftp.gnome.org/pub/GNOME/sources/pinpoint/0.1/${name}.tar.bz2"; 9 + sha256 = "26df7ba171d13f697c30c272460989b0f1b45e70c797310878a589ed5a6a47de"; 10 + }; 11 + buildInputs = [ pkgconfig autoconf automake clutter clutter-gst gdk_pixbuf 12 + cairo ]; 13 + 14 + meta = { 15 + homepage = https://wiki.gnome.org/action/show/Apps/Pinpoint; 16 + description = "A tool for making hackers do excellent presentations"; 17 + license = stdenv.lib.licenses.lgpl21; 18 + }; 19 + }
+2
pkgs/top-level/all-packages.nix
··· 10326 10326 10327 10327 pinfo = callPackage ../applications/misc/pinfo { }; 10328 10328 10329 + pinpoint = callPackage ../applications/office/pinpoint {}; 10330 + 10329 10331 pinta = callPackage ../applications/graphics/pinta { 10330 10332 gtksharp = gtksharp2; 10331 10333 };