mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Commited monotone expression by Cyril Romain.
svn path=/nixpkgs/trunk/; revision=10286
This commit is contained in:
parent
5cc556e313
commit
c68d2219a0
2 changed files with 14 additions and 0 deletions
10
pkgs/applications/version-management/monotone/default.nix
Normal file
10
pkgs/applications/version-management/monotone/default.nix
Normal 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];
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue