about summary refs log tree commit diff
path: root/pkgs/tools/security/rhash/default.nix
blob: 22d7e93fe4767b83fd817a3d64a4f8a4846f1e6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchFromGitHub, which }:

stdenv.mkDerivation rec {
  version = "2018-02-05";
  name = "rhash-${version}";

  src = fetchFromGitHub {
    owner = "rhash";
    repo = "RHash";
    rev = "cc26d54ff5df0f692907a5e3132a5eeca559ed61";
    sha256 = "1ldagp931lmxxpyvsb9rrar4iqwmv94m6lfjzkbkshpmk3p5ng7h";
  };

  nativeBuildInputs = [ which ];

  # configure script is not autotools-based, doesn't support these options
  configurePlatforms = [ ];

  doCheck = false; # fails

  installTargets = [ "install" "install-lib-shared" "install-lib-so-link" ];
  postInstall = "make -C librhash install-headers";

  meta = with stdenv.lib; {
    homepage = http://rhash.anz.ru;
    description = "Console utility and library for computing and verifying hash sums of files";
    platforms = platforms.all;
    maintainers = [ maintainers.andrewrk ];
  };
}