mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
1.1.17, untested
svn path=/nixpkgs/trunk/; revision=5935
This commit is contained in:
parent
d41d5a6970
commit
80e72c6c7e
1 changed files with 12 additions and 0 deletions
12
pkgs/development/libraries/libxslt/libxslt-1.1.17.nix
Normal file
12
pkgs/development/libraries/libxslt/libxslt-1.1.17.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{stdenv, fetchurl, libxml2}:
|
||||
|
||||
assert libxml2 != null;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libxslt-1.1.17";
|
||||
src = fetchurl {
|
||||
url = ftp://xmlsoft.org/libxslt/libxslt-1.1.17.tar.gz;
|
||||
md5 = "fde6a7a93c0eb14cba628692fa3a1000";
|
||||
};
|
||||
buildInputs = [libxml2];
|
||||
}
|
Loading…
Reference in a new issue