mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
111 lines
2.2 KiB
Nix
111 lines
2.2 KiB
Nix
{ lib, stdenvNoCC
|
|
, fetchFromGitHub
|
|
, coreutils
|
|
, makeWrapper
|
|
, sway-unwrapped
|
|
, installShellFiles
|
|
, wl-clipboard
|
|
, libnotify
|
|
, slurp
|
|
, grim
|
|
, jq
|
|
, gnugrep
|
|
, bash
|
|
|
|
, python3Packages
|
|
}:
|
|
|
|
let
|
|
version = "0-unstable-2024-03-19";
|
|
src = fetchFromGitHub {
|
|
owner = "OctopusET";
|
|
repo = "sway-contrib";
|
|
rev = "5d33a290e3cac3f0fed38ff950939da28e3ebfd7";
|
|
hash = "sha256-2qYxkXowSSzVcpsPO4JoUqaH/VUkOOWu1RKFXp1CXGs=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/OctopusET/sway-contrib";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
};
|
|
in
|
|
{
|
|
|
|
grimshot = stdenvNoCC.mkDerivation {
|
|
inherit version src;
|
|
|
|
pname = "grimshot";
|
|
|
|
dontBuild = true;
|
|
dontConfigure = true;
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
|
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 \
|
|
"${lib.makeBinPath [
|
|
sway-unwrapped
|
|
wl-clipboard
|
|
coreutils
|
|
libnotify
|
|
slurp
|
|
grim
|
|
jq
|
|
gnugrep
|
|
] }"
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
# check always returns 0
|
|
if [[ $($out/bin/grimshot check | grep "NOT FOUND") ]]; then false
|
|
else
|
|
echo "grimshot check passed"
|
|
fi
|
|
'';
|
|
|
|
meta = with lib; meta // {
|
|
description = "Helper for screenshots within sway";
|
|
maintainers = with maintainers; [ evils ];
|
|
mainProgram = "grimshot";
|
|
};
|
|
};
|
|
|
|
|
|
inactive-windows-transparency = let
|
|
# long name is long
|
|
lname = "inactive-windows-transparency";
|
|
in python3Packages.buildPythonApplication {
|
|
inherit version src;
|
|
|
|
pname = "sway-${lname}";
|
|
|
|
format = "other";
|
|
dontBuild = true;
|
|
dontConfigure = true;
|
|
|
|
propagatedBuildInputs = [ python3Packages.i3ipc ];
|
|
|
|
installPhase = ''
|
|
install -Dm 0755 $src/${lname}.py $out/bin/${lname}.py
|
|
'';
|
|
|
|
meta = with lib; meta // {
|
|
description = "It makes inactive sway windows transparent";
|
|
mainProgram = "${lname}.py";
|
|
maintainers = with maintainers; [
|
|
evils # packaged this as a side-effect of grimshot but doesn't use it
|
|
];
|
|
};
|
|
};
|
|
|
|
}
|