Adding xlsfonts, and adding meta information to xfontsel.
svn path=/nixpkgs/trunk/; revision=19094
This commit is contained in:
parent
4354cf8a6b
commit
1d70efa3c8
3 changed files with 35 additions and 1 deletions
|
@ -19,5 +19,12 @@ stdenv.mkDerivation rec {
|
|||
preInstall = ''
|
||||
installFlags="appdefaultdir=$out/share/X11/app-defaults"
|
||||
'';
|
||||
}
|
||||
|
||||
meta = {
|
||||
homepage = http://www.x.org/;
|
||||
description = "Allows testing the fonts available in an X server";
|
||||
licesnse = "free";
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
}
|
||||
}
|
||||
|
|
23
pkgs/applications/misc/xlsfonts/default.nix
Normal file
23
pkgs/applications/misc/xlsfonts/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
# This program used to come with xorg releases, but now I could only find it
|
||||
# at http://www.x.org/releases/individual/.
|
||||
# That is why this expression is not inside pkgs.xorg
|
||||
|
||||
{stdenv, fetchurl, libX11, pkgconfig}:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "xlsfonts-1.0.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.x.org/releases/individual/app/${name}.tar.bz2";
|
||||
sha256 = "070iym754g3mf9x6xczl4gdnpvlk6rdyl1ndwhpjl21vg2dm2vnc";
|
||||
};
|
||||
|
||||
buildInputs = [libX11 pkgconfig];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.x.org/;
|
||||
description = "Lists the fonts available in the X server";
|
||||
licesnse = "free";
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
}
|
||||
}
|
|
@ -6735,6 +6735,10 @@ let
|
|||
inherit fetchurl stdenv pkgconfig;
|
||||
inherit (xlibs) libX11 libXaw;
|
||||
};
|
||||
xlsfonts = import ../applications/misc/xlsfonts {
|
||||
inherit fetchurl stdenv pkgconfig;
|
||||
inherit (xlibs) libX11;
|
||||
};
|
||||
|
||||
fspot = import ../applications/graphics/f-spot {
|
||||
inherit fetchurl stdenv perl perlXMLParser pkgconfig mono
|
||||
|
|
Loading…
Reference in a new issue