nixpkgs/pkgs/development/libraries/neon/neon-0.24.7.nix

11 lines
239 B
Nix
Raw Normal View History

{stdenv, fetchurl, libxml2}:
stdenv.mkDerivation {
name = "neon-0.24.7";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/neon-0.24.7.tar.gz;
md5 = "5108bcbe41de4afe2e19cc58500fb9f2";
};
buildInputs = [libxml2];
}