3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #234521 from figsoda/encpipe

encpipe: init at 0.5
This commit is contained in:
Nick Cao 2023-05-27 23:40:04 -06:00 committed by GitHub
commit 178c44f9f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "encpipe";
version = "0.5";
src = fetchFromGitHub {
owner = "jedisct1";
repo = "encpipe";
rev = version;
hash = "sha256-YlEKSWzZuQyDi0mbwJh9Dfn4gKiOeqihSHPt4yY6YdY=";
fetchSubmodules = true;
};
installFlags = [
"PREFIX=$(out)"
];
meta = with lib; {
description = "An encryption tool";
homepage = "https://github.com/jedisct1/encpipe";
license = licenses.isc;
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -4776,6 +4776,8 @@ with pkgs;
enca = callPackage ../tools/text/enca { };
encpipe = callPackage ../tools/misc/encpipe { };
engage = callPackage ../tools/misc/engage { };
ent = callPackage ../tools/misc/ent { };