xcursor-pro: init at 2.0.2 (#335188)
[NixPkgs.git] / pkgs / by-name / en / encpipe / package.nix
blob6d9f09b9c74f4d5bffd27f1fe8e49e142ab02e11
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "encpipe";
9   version = "0.5";
11   src = fetchFromGitHub {
12     owner = "jedisct1";
13     repo = "encpipe";
14     rev = version;
15     hash = "sha256-YlEKSWzZuQyDi0mbwJh9Dfn4gKiOeqihSHPt4yY6YdY=";
16     fetchSubmodules = true;
17   };
19   installFlags = [
20     "PREFIX=$(out)"
21   ];
23   meta = with lib; {
24     description = "Encryption tool";
25     homepage = "https://github.com/jedisct1/encpipe";
26     license = licenses.isc;
27     maintainers = with maintainers; [ figsoda ];
28     mainProgram = "encpipe";
29   };