2014-08-21 06:22:42 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "stricat-${version}";
|
|
|
|
version = "20140609100300";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.stribob.com/dist/${name}.tgz";
|
|
|
|
sha256 = "1axg8r4g5n5kdqj5013pgck80nni3z172xkg506vz4zx1zcmrm4r";
|
|
|
|
};
|
|
|
|
|
2016-08-12 06:11:03 +01:00
|
|
|
buildFlags = [ "CC=cc" ];
|
|
|
|
|
2014-08-21 06:22:42 +01:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
mv stricat $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Multi-use cryptographic tool based on the STRIBOB algorithm";
|
2014-08-21 06:22:42 +01:00
|
|
|
homepage = "https://www.stribob.com/stricat/";
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
|
|
};
|
|
|
|
}
|