acba9240cd
It's currently the same machine, but tarballs.nixos.org should become an S3/CloudFront site eventually.
16 lines
343 B
Nix
16 lines
343 B
Nix
{stdenv, fetchurl, mono, gtksharp, pkgconfig, makeWrapper}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "monodoc-1.0.6";
|
|
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://tarballs.nixos.org/monodoc-1.0.6.tar.gz;
|
|
md5 = "f2fc27e8e4717d90dc7efa2450625693";
|
|
};
|
|
|
|
buildInputs = [mono gtksharp pkgconfig];
|
|
|
|
inherit gtksharp makeWrapper;
|
|
}
|