mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
keychain: support Darwin as a platform
This change provides support for Darwin as a platform by making the `procps` parameter optional. If the platform is linux, then `procps`/bin is added to the wrapped keychain's PATH, else not.
This commit is contained in:
parent
5343f1fab1
commit
aed29abec7
@ -1,5 +1,6 @@
|
||||
{ stdenv, fetchFromGitHub, makeWrapper, coreutils, openssh, gnupg
|
||||
, perl, procps, gnugrep, gawk, findutils, gnused }:
|
||||
, perl, procps, gnugrep, gawk, findutils, gnused
|
||||
, withProcps ? stdenv.isLinux }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "keychain-${version}";
|
||||
@ -26,12 +27,16 @@ stdenv.mkDerivation rec {
|
||||
--prefix PATH ":" "${gnused}/bin" \
|
||||
--prefix PATH ":" "${findutils}/bin" \
|
||||
--prefix PATH ":" "${gawk}/bin" \
|
||||
--prefix PATH ":" "${procps}/bin"
|
||||
${if withProcps then ("--prefix PATH \":\" ${procps}/bin") else ""}
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Keychain management tool";
|
||||
homepage = "http://www.funtoo.org/Keychain";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
# other platforms are untested (AFAIK)
|
||||
platforms =
|
||||
with stdenv.lib;
|
||||
platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user