nixpkgs/pkgs/development/libraries/botan/default.nix
Marc Weber f7f938a1d1 big breaking change: renaming lib.getAttr to lib.attrByPath
getAttr was ambiguous. It's also a builtin function

fix

svn path=/nixpkgs/trunk/; revision=15692
2009-05-24 10:57:41 +00:00

29 lines
596 B
Nix

a :
let
fetchurl = a.fetchurl;
version = a.lib.attrByPath ["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";
};
}