anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / tools / misc / envchain / default.nix
blob22a0075363994f893d0fc10d07ff7bb61a6cc7b6
1 { lib, stdenv, fetchFromGitHub, libedit, libsecret, ncurses, pkg-config, readline, Security }:
3 stdenv.mkDerivation rec {
4   pname = "envchain";
5   version = "1.1.0";
7   src = fetchFromGitHub {
8     owner = "sorah";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-QUy38kJzMbYOyT86as4/yq2ctcszSnB8a3eVWxgd4Fo=";
12   };
14   postPatch = ''
15     sed -i -e "s|-ltermcap|-lncurses|" Makefile
16   '';
18   nativeBuildInputs = [ pkg-config ];
20   buildInputs = [ libsecret readline ]
21     ++ lib.optionals stdenv.hostPlatform.isDarwin [ libedit ncurses Security ];
23   makeFlags = [ "DESTDIR=$(out)" ];
25   meta = with lib; {
26     description = "Set environment variables with macOS keychain or D-Bus secret service";
27     homepage = "https://github.com/sorah/envchain";
28     license = licenses.mit;
29     platforms = platforms.unix;
30     maintainers = [ ];
31     mainProgram = "envchain";
32   };