mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-25 06:13:54 +00:00
a7703662a4
svn path=/nixpkgs/branches/stdenv-updates/; revision=10145
8 lines
218 B
Nix
8 lines
218 B
Nix
{stdenv, fetchurl}: stdenv.mkDerivation {
|
|
name = "expat-2.0.1";
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/expat/expat-2.0.1.tar.gz;
|
|
sha256 = "14sy5qx9hgjyfs743iq8ywldhp5w4n6cscqf2p4hgrw6vys60xl4";
|
|
};
|
|
}
|