mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
54 lines
984 B
Nix
54 lines
984 B
Nix
{ lib
|
|
, stdenv
|
|
, autoreconfHook
|
|
, makeWrapper
|
|
, fetchFromGitHub
|
|
, ncurses
|
|
, parted
|
|
, pkg-config
|
|
, libconfig
|
|
, hdparm
|
|
, smartmontools
|
|
, dmidecode
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nwipe";
|
|
version = "0.37";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "martijnvanbrummelen";
|
|
repo = "nwipe";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-0mBiWKkMV8i9n158k843caulF90k43ctpMvKhc4HZxY";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
makeWrapper
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
ncurses
|
|
parted
|
|
libconfig
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/nwipe \
|
|
--prefix PATH : ${lib.makeBinPath [ hdparm smartmontools dmidecode ]}
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Securely erase disks";
|
|
mainProgram = "nwipe";
|
|
homepage = "https://github.com/martijnvanbrummelen/nwipe";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ vifino woffs ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|