Commited monotone expression by Cyril Romain.

svn path=/nixpkgs/trunk/; revision=10286
This commit is contained in:
Michael Raskin 2008-01-25 11:56:36 +00:00
parent 5cc556e313
commit c68d2219a0
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,10 @@
{stdenv, fetchurl, boost, zlib}:
stdenv.mkDerivation {
name = "monotone-0.38";
src = fetchurl {
url = http://monotone.ca/downloads/0.38/monotone-0.38.tar.gz;
md5 = "c1a0d2619f451a664289b042c104860d";
};
buildInputs = [boost zlib];
}

View File

@ -1188,6 +1188,10 @@ rec {
inherit stdenv perl;
};
monotone = import ../applications/version-management/monotone {
inherit stdenv fetchurl boost zlib;
};
nasm = import ../development/compilers/nasm {
inherit fetchurl stdenv;
};