tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
sedutil: 1.15.1 -> 1.20.0
Fabian Affolter
4 years ago
0182d404
4ccc8df4
+16
-10
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
sedutil
default.nix
+16
-10
pkgs/tools/security/sedutil/default.nix
···
1
1
-
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
, autoreconfHook
5
5
+
}:
2
6
3
7
stdenv.mkDerivation rec {
4
8
pname = "sedutil";
5
5
-
version = "1.15.1";
9
9
+
version = "1.20.0";
6
10
7
11
src = fetchFromGitHub {
8
8
-
owner = "Drive-Trust-Alliance";
9
9
-
repo = "sedutil";
10
10
-
rev = version;
11
11
-
sha256 = "0zg5v27vbrzzl2vqzks91zj48z30qgcshkqkm1g8ycnhi145l0mf";
12
12
+
owner = "Drive-Trust-Alliance";
13
13
+
repo = "sedutil";
14
14
+
rev = version;
15
15
+
sha256 = "sha256-NG/7aqe48ShHWW5hW8axYWV4+zX0dBE7Wy9q58l0S3E=";
12
16
};
13
17
14
18
postPatch = ''
15
19
patchShebangs .
16
20
'';
17
21
18
18
-
nativeBuildInputs = [ autoreconfHook ];
22
22
+
nativeBuildInputs = [
23
23
+
autoreconfHook
24
24
+
];
19
25
20
26
enableParallelBuilding = true;
21
27
22
28
meta = with lib; {
23
29
description = "DTA sedutil Self encrypting drive software";
24
24
-
homepage = "https://www.drivetrust.com";
25
25
-
license = licenses.gpl3;
26
26
-
platforms = platforms.linux;
30
30
+
homepage = "https://www.drivetrust.com";
31
31
+
license = licenses.gpl3Plus;
32
32
+
platforms = platforms.linux;
27
33
};
28
34
}