1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

sedutil: init at 1.15.1

This commit is contained in:
Peter Hoeg 2018-03-19 12:06:42 +08:00
parent cc4677c36e
commit 517589f1ff
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
name = "sedutil-${version}";
version = "1.15.1";
src = fetchFromGitHub {
owner = "Drive-Trust-Alliance";
repo = "sedutil";
rev = version;
sha256 = "0zg5v27vbrzzl2vqzks91zj48z30qgcshkqkm1g8ycnhi145l0mf";
};
postPatch = ''
patchShebangs .
'';
nativeBuildInputs = [ autoreconfHook ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "DTA sedutil Self encrypting drive software";
homepage = https://www.drivetrust.com;
license = licenses.gpl3;
platforms = platforms.linux;
};
}

View file

@ -625,6 +625,8 @@ with pkgs;
ecdsautils = callPackage ../tools/security/ecdsautils { };
sedutil = callPackage ../tools/security/sedutil { };
elvish = callPackage ../shells/elvish { };
encryptr = callPackage ../tools/security/encryptr {