summary refs log tree commit diff
path: root/pkgs/development/libraries/neon/neon-0.24.7.nix
blob: 24e35e736a22d4fae72fdc5c60d6d37b43acb083 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{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];
}