20 lines
514 B
Nix
20 lines
514 B
Nix
|
{ 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";
|
||
|
maintainers = stdenv.lib.maintainers.goibniu;
|
||
|
platforms = stdenv.lib.platforms.linux;
|
||
|
};
|
||
|
}
|