tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
beecrypt: modernize
Sigmanificient
10 months ago
359ed219
ff403b0b
+7
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
be
beecrypt
package.nix
+7
-4
pkgs/by-name/be/beecrypt/package.nix
···
5
m4,
6
}:
7
8
-
stdenv.mkDerivation rec {
9
pname = "beecrypt";
10
version = "4.2.1";
11
12
src = fetchurl {
13
-
url = "mirror://sourceforge/beecrypt/beecrypt-${version}.tar.gz";
14
-
sha256 = "0pf5k1c4nsj77jfq5ip0ra1gzx2q47xaa0s008fnn6hd11b1yvr8";
15
};
16
17
postPatch = ''
···
19
'';
20
21
buildInputs = [ m4 ];
0
22
configureFlags = [
23
"--disable-optimized"
24
"--enable-static"
25
];
26
27
meta = {
0
28
platforms = lib.platforms.linux;
29
license = lib.licenses.lgpl2;
0
30
};
31
-
}
···
5
m4,
6
}:
7
8
+
stdenv.mkDerivation (finalAttrs: {
9
pname = "beecrypt";
10
version = "4.2.1";
11
12
src = fetchurl {
13
+
url = "mirror://sourceforge/beecrypt/beecrypt-${finalAttrs.version}.tar.gz";
14
+
hash = "sha256-KG8fVggNGmsdAkADpfohWPT/gsrgxoKdPEdqS1iYxV0=";
15
};
16
17
postPatch = ''
···
19
'';
20
21
buildInputs = [ m4 ];
22
+
23
configureFlags = [
24
"--disable-optimized"
25
"--enable-static"
26
];
27
28
meta = {
29
+
description = "Strong and fast cryptography toolkit library";
30
platforms = lib.platforms.linux;
31
license = lib.licenses.lgpl2;
32
+
maintainers = [ ];
33
};
34
+
})