nixpkgs/pkgs/development/libraries/expat/default.nix

8 lines
220 B
Nix
Raw Normal View History

{stdenv, fetchurl}: stdenv.mkDerivation {
name = "expat-2.0.0";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/expat/expat-2.0.0.tar.gz;
md5 = "d945df7f1c0868c5c73cf66ba9596f3f";
};
}