evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / en / encpipe / package.nix
blobc48fa9d162f430ab3b4305527f60e926817319ea
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 }:
6 stdenv.mkDerivation rec {
7   pname = "encpipe";
8   version = "0.5";
10   src = fetchFromGitHub {
11     owner = "jedisct1";
12     repo = "encpipe";
13     rev = version;
14     hash = "sha256-YlEKSWzZuQyDi0mbwJh9Dfn4gKiOeqihSHPt4yY6YdY=";
15     fetchSubmodules = true;
16   };
18   installFlags = [
19     "PREFIX=$(out)"
20   ];
22   meta = with lib; {
23     description = "Encryption tool";
24     homepage = "https://github.com/jedisct1/encpipe";
25     license = licenses.isc;
26     maintainers = with maintainers; [ figsoda ];
27     mainProgram = "encpipe";
28   };