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