nixpkgs/pkgs/development/libraries/scrollkeeper/default.nix
Eelco Dolstra e42507d182 * Move tarballs to catamaran so that we are no longer dependent on a
gazillion different servers.  Resurrected some 25 missing files.

svn path=/nixpkgs/trunk/; revision=2237
2005-02-15 14:44:19 +00:00

19 lines
597 B
Nix

{ stdenv, fetchurl, perl, libxml2, libxslt, docbook_xml_dtd_42
, perlXMLParser}:
assert perl != null && libxml2 != null && libxslt != null
&& docbook_xml_dtd_42 != null && perlXMLParser != null;
# !!! seems to need iconv, but cannot find it since $glibc/bin is not in PATH
stdenv.mkDerivation {
name = "scrollkeeper-0.3.14";
builder = ./builder.sh;
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/scrollkeeper-0.3.14.tar.gz;
md5 = "161eb3f29e30e7b24f84eb93ac696155";
};
buildInputs = [perl libxml2 libxslt];
inherit docbook_xml_dtd_42 perlXMLParser;
}