mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 00:43:24 +00:00
12 lines
269 B
Nix
12 lines
269 B
Nix
|
{stdenv, fetchurl, bison, pkgconfig, glib}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "mono-1.1.4";
|
||
|
src = fetchurl {
|
||
|
url = http://www.go-mono.com/archive/1.1.4/mono-1.1.4.tar.gz;
|
||
|
md5 = "66755e5f201e912cecdd19807ba62487";
|
||
|
};
|
||
|
|
||
|
buildInputs = [bison pkgconfig glib];
|
||
|
}
|