nixpkgs/pkgs/applications/misc/xlsfonts/default.nix

24 lines
729 B
Nix
Raw Normal View History

# 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 {
2013-12-13 22:44:09 +00:00
name = "xlsfonts-1.0.4";
src = fetchurl {
2013-07-14 02:38:03 +00:00
url = "mirror://xorg/individual/app/${name}.tar.bz2";
2013-12-13 22:44:09 +00:00
sha256 = "1lhcx600z9v65nk93xaxfzi79bm4naynabb52gz1vy1bxj2r25r8";
};
buildInputs = [libX11 pkgconfig];
meta = {
homepage = http://www.x.org/;
description = "Lists the fonts available in the X server";
license = stdenv.lib.licenses.free;
maintainers = with stdenv.lib.maintainers; [viric];
2014-08-13 00:40:57 +00:00
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}