about summary refs log tree commit diff
path: root/pkgs/tools/misc/encpipe/default.nix
blob: c48fa9d162f430ab3b4305527f60e926817319ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ 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 = "Encryption tool";
    homepage = "https://github.com/jedisct1/encpipe";
    license = licenses.isc;
    maintainers = with maintainers; [ figsoda ];
    mainProgram = "encpipe";
  };
}