evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / sc / scrub / package.nix
blob2fc2b43ea29c2a84b5b0d3e10336a4ba521a3be7
1 { lib, stdenv, fetchFromGitHub, autoconf, automake, libtool }:
3 stdenv.mkDerivation rec {
4   pname = "scrub";
5   version = "2.6.1";
7   src = fetchFromGitHub {
8     owner = "chaos";
9     repo = "scrub";
10     rev = version;
11     sha256 = "0ndcri2ddzqlsxvy1b607ajyd4dxpiagzx331yyi7hf3ijph129f";
12   };
14   nativeBuildInputs = [ autoconf automake ];
15   buildInputs = [ libtool ];
17   preConfigure = "./autogen.sh";
19   meta = with lib; {
20     description = "Disk overwrite utility";
21     homepage = "https://github.com/chaos/scrub";
22     changelog = "https://raw.githubusercontent.com/chaos/scrub/master/NEWS";
23     license = licenses.gpl2Plus;
24     maintainers = with maintainers; [ j0hax ];
25     platforms = platforms.unix;
26     mainProgram = "scrub";
27   };