lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add the gtk2fontsel Font Viewer

+32
+28
pkgs/applications/misc/gtk2fontsel/default.nix
··· 1 + {stdenv, fetchurl, pkgconfig, gtk }: 2 + 3 + stdenv.mkDerivation rec { 4 + version = "0.1"; 5 + name = "gtk2fontsel-${version}"; 6 + 7 + src = fetchurl { 8 + url = "mirror://sourceforge/gtk2fontsel/${name}.tar.gz"; 9 + sha256 = "0s2sj19n8ys92q9832hkn36ld91bb4qavicc6nygkry6qdpkkmjw"; 10 + }; 11 + 12 + buildInputs = [ stdenv pkgconfig gtk ]; 13 + 14 + preferLocalBuild = true; 15 + 16 + meta = with stdenv.lib; { 17 + description = "A font selection program for X11 using the GTK2 toolkit"; 18 + longDescription = '' 19 + Font selection tool similar to xfontsel implemented using GTK+ 2. 20 + Trivial, but useful nonetheless. 21 + ''; 22 + homepage = http://gtk2fontsel.sourceforge.net/; 23 + downloadPage = http://sourceforge.net/projects/gtk2fontsel/; 24 + license = licenses.gpl2; 25 + maintainers = [ maintainers.prikhi ]; 26 + platforms = platforms.linux; 27 + }; 28 + }
+4
pkgs/top-level/all-packages.nix
··· 9916 9916 9917 9917 gpsd = callPackage ../servers/gpsd { }; 9918 9918 9919 + gtk2fontsel = callPackage ../applications/misc/gtk2fontsel { 9920 + inherit (gnome2) gtk; 9921 + }; 9922 + 9919 9923 guitone = callPackage ../applications/version-management/guitone { 9920 9924 graphviz = graphviz_2_32; 9921 9925 };