My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/scrub/default.nix

27 lines
711 B

{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool }:
stdenv.mkDerivation rec {
pname = "scrub";
version = "2.6.1";
src = fetchFromGitHub {
owner = "chaos";
repo = "scrub";
rev = version;
sha256 = "0ndcri2ddzqlsxvy1b607ajyd4dxpiagzx331yyi7hf3ijph129f";
};
nativeBuildInputs = [ autoconf automake ];
buildInputs = [ libtool ];
preConfigure = "./autogen.sh";
meta = with lib; {
description = "Disk overwrite utility";
homepage = "https://github.com/chaos/scrub";
changelog = "https://raw.githubusercontent.com/chaos/scrub/master/NEWS";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ j0hax ];
platforms = platforms.unix;
};
}