Updated Monotone to 0.43
svn path=/nixpkgs/trunk/; revision=14704
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
a :
|
||||
let
|
||||
fetchurl = a.fetchurl;
|
||||
|
||||
version = a.lib.getAttr ["version"] "1.8.1" a;
|
||||
buildInputs = with a; [
|
||||
perl
|
||||
];
|
||||
in
|
||||
rec {
|
||||
src = fetchurl {
|
||||
url = "http://files.randombit.net/botan/Botan-${version}.tbz";
|
||||
sha256 = "1lgqkg7q0qpzh647zmzay149myrjihcx4jp3rrz6gw17rgn11v98";
|
||||
};
|
||||
|
||||
inherit buildInputs;
|
||||
configureFlags = [];
|
||||
|
||||
/* doConfigure should be removed if not needed */
|
||||
phaseNames = ["doConfigure" "doMakeInstall"];
|
||||
|
||||
configureCommand = "perl ./configure.pl";
|
||||
|
||||
name = "botan-" + version;
|
||||
meta = {
|
||||
description = "Cryptographic algorithms library";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user