My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/beecrypt/default.nix

18 lines
441 B

{lib, stdenv, fetchurl, m4}:
stdenv.mkDerivation rec {
pname = "beecrypt";
version = "4.2.1";
src = fetchurl {
url = "mirror://sourceforge/beecrypt/beecrypt-${version}.tar.gz";
sha256 = "0pf5k1c4nsj77jfq5ip0ra1gzx2q47xaa0s008fnn6hd11b1yvr8";
};
buildInputs = [ m4 ];
configureFlags = [ "--disable-optimized" "--enable-static" ];
meta = {
platforms = lib.platforms.linux;
license = lib.licenses.lgpl2;
};
}