hashdeep: cleanup, switch to pname + version

wip/yesman
Sandro Jäckel 3 years ago
parent 5c6af7b729
commit 336b015648
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 8
      pkgs/tools/security/hashdeep/default.nix

@ -1,8 +1,8 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
let version = "4.4";
in stdenv.mkDerivation {
name = "hashdeep-${version}";
stdenv.mkDerivation rec {
pname = "hashdeep";
version = "4.4";
src = fetchFromGitHub {
owner = "jessek";
@ -18,6 +18,6 @@ in stdenv.mkDerivation {
homepage = "https://github.com/jessek/hashdeep";
license = licenses.gpl2;
platforms = with platforms; linux ++ freebsd ++ openbsd;
maintainers = [ lib.maintainers.karantan ];
maintainers = [ maintainers.karantan ];
};
}

Loading…
Cancel
Save