nixpkgs/pkgs/tools/misc/aescrypt/default.nix
Bjørn Forsman bd01fad0ed Captialize meta.description of all packages
In line with the Nixpkgs manual.

A mechanical change, done with this command:

  find pkgs -name "*.nix" | \
      while read f; do \
          sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \
      done

I manually skipped some:

* Descriptions starting with an abbreviation, a user name or package name
* Frequently generated expressions (haskell-packages.nix)
2016-06-20 13:55:52 +02:00

35 lines
864 B
Nix

{ stdenv, fetchurl, libiconv }:
stdenv.mkDerivation rec {
version = "3.0.9";
name = "aescrypt-${version}";
src = fetchurl {
url = "http://www.aescrypt.com/download/v3/linux/${name}.tgz";
sha256 = "3f3590f9b7e50039611ba9c0cf1cae1b188a44bd39cfc41553db7ec5709c0882";
};
preBuild = ''
cd src
'';
installPhase= ''
mkdir -p $out/bin
cp aescrypt $out/bin
cp aescrypt_keygen $out/bin
'';
buildInputs = [ libiconv ];
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-liconv";
meta = with stdenv.lib; {
description = "Encrypt files with Advanced Encryption Standard (AES)";
homepage = http://www.aescrypt.com/;
license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 qknight ];
platforms = stdenv.lib.platforms.all;
hydraPlatforms = stdenv.lib.platforms.linux;
};
}