2013-02-18 13:47:41 -08:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "aespipe-${version}";
|
2015-05-31 04:08:41 -07:00
|
|
|
version = "2.4d";
|
2013-02-18 13:47:41 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-01-10 00:16:41 -08:00
|
|
|
url = "mirror://sourceforge/loop-aes/aespipe/aespipe-v${version}.tar.bz2";
|
2015-05-31 04:08:41 -07:00
|
|
|
sha256 = "03z5i41xv6p3m79lm04d7msda8878lsppv3324zbjjfy19p6bkn5";
|
2013-02-18 13:47:41 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "AES encrypting or decrypting pipe";
|
|
|
|
homepage = http://loop-aes.sourceforge.net/aespipe.README;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2014-09-13 04:51:39 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.goibhniu ];
|
2013-02-18 13:47:41 -08:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|