2019-03-03 22:30:31 +01:00
|
|
|
{stdenv, fetchurl, pkgconfig, gtk2 }:
|
2014-12-14 05:36:11 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.1";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gtk2fontsel";
|
2014-12-14 05:36:11 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://sourceforge/gtk2fontsel/${pname}-${version}.tar.gz";
|
2014-12-14 05:36:11 +01:00
|
|
|
sha256 = "0s2sj19n8ys92q9832hkn36ld91bb4qavicc6nygkry6qdpkkmjw";
|
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-03-03 22:30:31 +01:00
|
|
|
buildInputs = [ stdenv gtk2 ];
|
2014-12-14 05:36:11 +01:00
|
|
|
|
|
|
|
preferLocalBuild = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-09-04 00:49:40 +02:00
|
|
|
description = "A font selection program for X11 using the GTK 2 toolkit";
|
2014-12-14 05:36:11 +01:00
|
|
|
longDescription = ''
|
2019-09-04 00:49:40 +02:00
|
|
|
Font selection tool similar to xfontsel implemented using GTK 2.
|
2014-12-14 05:36:11 +01:00
|
|
|
Trivial, but useful nonetheless.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://gtk2fontsel.sourceforge.net/";
|
|
|
|
downloadPage = "https://sourceforge.net/projects/gtk2fontsel/";
|
2014-12-14 05:36:11 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.prikhi ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|