about summary refs log tree commit diff
path: root/pkgs/tools/security/rhash/default.nix
blob: 6a2710869bf8d4384895941c056b565820fa9dab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
  };
}