sedutil: 1.15.1 -> 1.20.0

+16 -10
+16 -10
pkgs/tools/security/sedutil/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + }: 2 6 3 7 stdenv.mkDerivation rec { 4 8 pname = "sedutil"; 5 - version = "1.15.1"; 9 + version = "1.20.0"; 6 10 7 11 src = fetchFromGitHub { 8 - owner = "Drive-Trust-Alliance"; 9 - repo = "sedutil"; 10 - rev = version; 11 - sha256 = "0zg5v27vbrzzl2vqzks91zj48z30qgcshkqkm1g8ycnhi145l0mf"; 12 + owner = "Drive-Trust-Alliance"; 13 + repo = "sedutil"; 14 + rev = version; 15 + sha256 = "sha256-NG/7aqe48ShHWW5hW8axYWV4+zX0dBE7Wy9q58l0S3E="; 12 16 }; 13 17 14 18 postPatch = '' 15 19 patchShebangs . 16 20 ''; 17 21 18 - nativeBuildInputs = [ autoreconfHook ]; 22 + nativeBuildInputs = [ 23 + autoreconfHook 24 + ]; 19 25 20 26 enableParallelBuilding = true; 21 27 22 28 meta = with lib; { 23 29 description = "DTA sedutil Self encrypting drive software"; 24 - homepage = "https://www.drivetrust.com"; 25 - license = licenses.gpl3; 26 - platforms = platforms.linux; 30 + homepage = "https://www.drivetrust.com"; 31 + license = licenses.gpl3Plus; 32 + platforms = platforms.linux; 27 33 }; 28 34 }