mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
rhash: new package
Console utility for computing and verifying hash sums of files http://rhash.anz.ru
This commit is contained in:
parent
460885dfa5
commit
facb810bcc
18
pkgs/tools/security/rhash/default.nix
Normal file
18
pkgs/tools/security/rhash/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -1973,6 +1973,8 @@ let
|
|||||||
|
|
||||||
rdmd = callPackage ../development/compilers/rdmd { };
|
rdmd = callPackage ../development/compilers/rdmd { };
|
||||||
|
|
||||||
|
rhash = callPackage ../tools/security/rhash { };
|
||||||
|
|
||||||
riemann_c_client = callPackage ../tools/misc/riemann-c-client { };
|
riemann_c_client = callPackage ../tools/misc/riemann-c-client { };
|
||||||
|
|
||||||
ripmime = callPackage ../tools/networking/ripmime {};
|
ripmime = callPackage ../tools/networking/ripmime {};
|
||||||
|
Loading…
Reference in New Issue
Block a user