2021-01-16 18:09:27 -08:00
|
|
|
{ fetchurl, lib, stdenv, pkg-config, autoconf, automake, clutter, clutter-gst
|
2019-05-22 04:03:39 -07:00
|
|
|
, gdk-pixbuf, cairo, clutter-gtk }:
|
2014-11-06 19:50:40 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "pinpoint";
|
2015-11-20 08:26:16 -08:00
|
|
|
version = "0.1.8";
|
2014-11-06 19:50:40 -08:00
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "http://ftp.gnome.org/pub/GNOME/sources/pinpoint/0.1/${pname}-${version}.tar.xz";
|
2015-11-20 08:26:16 -08:00
|
|
|
sha256 = "1jp8chr9vjlpb5lybwp5cg6g90ak5jdzz9baiqkbg0anlg8ps82s";
|
2014-11-06 19:50:40 -08:00
|
|
|
};
|
2021-01-16 18:09:27 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-05-22 04:03:39 -07:00
|
|
|
buildInputs = [ autoconf automake clutter clutter-gst gdk-pixbuf
|
2018-02-24 18:23:58 -08:00
|
|
|
cairo clutter-gtk ];
|
2014-11-06 19:50:40 -08:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://wiki.gnome.org/action/show/Apps/Pinpoint";
|
2014-11-06 19:50:40 -08:00
|
|
|
description = "A tool for making hackers do excellent presentations";
|
2015-09-11 09:24:10 -07:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2014-11-06 19:50:40 -08:00
|
|
|
};
|
|
|
|
}
|