nixpkgs/pkgs/applications/office/pinpoint/default.nix

22 lines
762 B
Nix
Raw Normal View History

2014-11-07 03:50:40 +00:00
{ fetchurl, stdenv, pkgconfig, autoconf, automake, clutter, clutter-gst
2015-11-20 16:26:16 +00:00
, gdk_pixbuf, cairo, clutter_gtk }:
2014-11-07 03:50:40 +00:00
stdenv.mkDerivation rec {
name = "pinpoint-${version}";
2015-11-20 16:26:16 +00:00
version = "0.1.8";
2014-11-07 03:50:40 +00:00
src = fetchurl {
2015-09-11 16:24:10 +00:00
url = "http://ftp.gnome.org/pub/GNOME/sources/pinpoint/0.1/${name}.tar.xz";
2015-11-20 16:26:16 +00:00
sha256 = "1jp8chr9vjlpb5lybwp5cg6g90ak5jdzz9baiqkbg0anlg8ps82s";
2014-11-07 03:50:40 +00:00
};
buildInputs = [ pkgconfig autoconf automake clutter clutter-gst gdk_pixbuf
2015-11-20 16:26:16 +00:00
cairo clutter_gtk ];
2014-11-07 03:50:40 +00:00
2015-09-11 16:24:10 +00:00
meta = with stdenv.lib; {
2014-11-07 03:50:40 +00:00
homepage = https://wiki.gnome.org/action/show/Apps/Pinpoint;
description = "A tool for making hackers do excellent presentations";
2015-09-11 16:24:10 +00:00
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
2014-11-07 03:50:40 +00:00
};
}