mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 17:14:33 +00:00
1cf977bad5
Diff: https://github.com/common-fate/granted/compare/v0.35.1...v0.35.2 Changelog: https://github.com/common-fate/granted/releases/tag/v0.35.2
102 lines
2.6 KiB
Nix
102 lines
2.6 KiB
Nix
{
|
|
bash,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
versionCheckHook,
|
|
|
|
withFish ? false,
|
|
fish,
|
|
|
|
lib,
|
|
makeWrapper,
|
|
xdg-utils,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "granted";
|
|
version = "0.35.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "common-fate";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-8Ou1TkPGAsrRfV75ntPKpXTUEhVkwgtaXErrRX8hR0E=";
|
|
};
|
|
|
|
vendorHash = "sha256-XCq+hDxK7C9XYlKe+lUArQlPheWALx806o1IeCRD7vs=";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/common-fate/granted/internal/build.Version=v${version}"
|
|
"-X github.com/common-fate/granted/internal/build.Commit=${src.rev}"
|
|
"-X github.com/common-fate/granted/internal/build.Date=1970-01-01-00:00:01"
|
|
"-X github.com/common-fate/granted/internal/build.BuiltBy=Nix"
|
|
];
|
|
|
|
subPackages = [
|
|
"cmd/granted"
|
|
];
|
|
|
|
postInstall =
|
|
let
|
|
# assume depends on assumego, so we add (placeholder "out") to its path
|
|
addToAssumePath = lib.makeBinPath [
|
|
xdg-utils
|
|
(placeholder "out")
|
|
];
|
|
in
|
|
''
|
|
ln -s $out/bin/granted $out/bin/assumego
|
|
|
|
# Create script with correct permissions
|
|
install -Dm755 /dev/null $out/bin/assume
|
|
|
|
# assume is a script that must be sourced
|
|
# We can't wrap it because it inspects $0 and calls return, which can only
|
|
# be done in sourced scripts.
|
|
# So instead we insert the following snippet into the beginning of the
|
|
# script to add to PATH.
|
|
# This is borrowed from wrapProgram --suffix PATH :
|
|
addToPath="$(cat << 'EOF'
|
|
|
|
PATH=''${PATH:+':'$PATH':'}
|
|
if [[ $PATH != *':'''${addToAssumePath}''':'* ]]; then
|
|
PATH=$PATH'${addToAssumePath}'
|
|
fi
|
|
PATH=''${PATH#':'}
|
|
PATH=''${PATH%':'}
|
|
export PATH
|
|
|
|
EOF
|
|
)"
|
|
|
|
# Insert below the #!/bin/sh shebang
|
|
echo "$addToPath" | sed "/#!\/bin\/sh/r /dev/stdin" $src/scripts/assume >> $out/bin/assume
|
|
''
|
|
+ lib.optionalString withFish ''
|
|
# Install fish script
|
|
install -Dm755 $src/scripts/assume.fish $out/share/assume.fish
|
|
substituteInPlace $out/share/assume.fish \
|
|
--replace /bin/fish ${fish}/bin/fish
|
|
'';
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
doInstallCheck = true;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Easiest way to access your cloud";
|
|
homepage = "https://github.com/common-fate/granted";
|
|
changelog = "https://github.com/common-fate/granted/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
jlbribeiro
|
|
];
|
|
};
|
|
}
|