2013-02-18 21:47:41 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "aespipe-${version}";
|
2014-01-10 08:16:41 +00:00
|
|
|
version = "2.4c";
|
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";
|
2013-02-18 21:47:41 +00:00
|
|
|
sha256 = "0pl49jnjczjvfxwm9lw576qsjm1lxh8gc4g776l904cixaz90096";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "AES encrypting or decrypting pipe";
|
|
|
|
homepage = http://loop-aes.sourceforge.net/aespipe.README;
|
|
|
|
license = "GPL";
|
2013-02-21 21:30:14 +00:00
|
|
|
maintainers = stdenv.lib.maintainers.goibhniu;
|
2013-02-18 21:47:41 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|