summary refs log tree commit diff
path: root/pkgs/tools/security/stricat/default.nix
blob: 64ebb4c0ca26090149e0a573b6bba620cbe138ef (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
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name    = "stricat-${version}";
  version = "20140609100300";

  src = fetchurl {
    url    = "http://www.stribob.com/dist/${name}.tgz";
    sha256 = "1axg8r4g5n5kdqj5013pgck80nni3z172xkg506vz4zx1zcmrm4r";
  };

  installPhase = ''
    mkdir -p $out/bin
    mv stricat $out/bin
  '';

  meta = {
    description = "multi-use cryptographic tool based on the STRIBOB algorithm";
    homepage    = "https://www.stribob.com/stricat/";
    license     = stdenv.lib.licenses.bsd3;
    platforms   = stdenv.lib.platforms.unix;
    maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
  };
}