diff options
| author | Nick Cao <nickcao@nichi.co> | 2024-06-13 14:18:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-13 14:18:09 -0400 |
| commit | b1496a2c6b264b6334207ac60f45fd8dbb36ddcf (patch) | |
| tree | 67fe96369368ababe4bda16b1f9161ba2d346e70 | |
| parent | Merge pull request #319430 from NixOS/backport-318297-to-release-24.05 (diff) | |
| parent | sway-contrib.grimshot: add bash shell-completion (diff) | |
| download | nixpkgs-b1496a2c6b264b6334207ac60f45fd8dbb36ddcf.tar.gz | |
Merge pull request #317541 from NixOS/backport-315364-to-release-24.05
[Backport release-24.05] sway-contrib.grimshot: 0-unstable-2024-01-20 -> 0-unstable-2024-03-19
| -rw-r--r-- | pkgs/applications/misc/sway-contrib/default.nix | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/applications/misc/sway-contrib/default.nix b/pkgs/applications/misc/sway-contrib/default.nix index 4ddca21774e0..05127f05e20a 100644 --- a/pkgs/applications/misc/sway-contrib/default.nix +++ b/pkgs/applications/misc/sway-contrib/default.nix @@ -9,18 +9,19 @@ , slurp , grim , jq +, gnugrep , bash , python3Packages }: let - version = "0-unstable-2024-01-20"; + version = "0-unstable-2024-03-19"; src = fetchFromGitHub { owner = "OctopusET"; repo = "sway-contrib"; - rev = "b7825b218e677c65f6849be061b93bd5654991bf"; - hash = "sha256-ZTfItJ77mrNSzXFVcj7OV/6zYBElBj+1LcLLHxBFypk="; + rev = "5d33a290e3cac3f0fed38ff950939da28e3ebfd7"; + hash = "sha256-2qYxkXowSSzVcpsPO4JoUqaH/VUkOOWu1RKFXp1CXGs="; }; meta = with lib; { @@ -46,6 +47,7 @@ grimshot = stdenvNoCC.mkDerivation { buildInputs = [ bash ]; installPhase = '' installManPage grimshot.1 + installShellCompletion --cmd grimshot grimshot-completion.bash install -Dm 0755 grimshot $out/bin/grimshot wrapProgram $out/bin/grimshot --set PATH \ @@ -57,6 +59,7 @@ grimshot = stdenvNoCC.mkDerivation { slurp grim jq + gnugrep ] }" ''; |
