rhash: new package

Console utility for computing and verifying hash sums of files

http://rhash.anz.ru
This commit is contained in:
Luca Bruno 2014-08-21 00:42:50 +02:00
parent 460885dfa5
commit facb810bcc
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "rhash-1.3.3";
src = fetchurl {
url = "mirror://sourceforge/rhash/${name}-src.tar.gz";
sha1 = "0981bdc98ba7ef923b1a6cd7fd8bb0374cff632e";
};
installFlags = [ "DESTDIR=$(out)" "PREFIX=/" ];
meta = with stdenv.lib; {
homepage = http://rhash.anz.ru;
description = "Console utility for computing and verifying hash sums of files";
platforms = platforms.linux;
};
}

View File

@ -1973,6 +1973,8 @@ let
rdmd = callPackage ../development/compilers/rdmd { };
rhash = callPackage ../tools/security/rhash { };
riemann_c_client = callPackage ../tools/misc/riemann-c-client { };
ripmime = callPackage ../tools/networking/ripmime {};