2013-02-18 22:47:41 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "aespipe-${version}";
|
|
|
|
version = "v2.4c";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/loop-aes/aespipe/${name}.tar.bz2";
|
|
|
|
sha256 = "0pl49jnjczjvfxwm9lw576qsjm1lxh8gc4g776l904cixaz90096";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "AES encrypting or decrypting pipe";
|
|
|
|
homepage = http://loop-aes.sourceforge.net/aespipe.README;
|
|
|
|
license = "GPL";
|
2013-02-21 22:30:14 +01:00
|
|
|
maintainers = stdenv.lib.maintainers.goibhniu;
|
2013-02-18 22:47:41 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|