wl-color-picker: init at 1.3
This commit is contained in:
parent
85c14e9c0f
commit
94411d03cc
59
pkgs/tools/wayland/wl-color-picker/default.nix
Normal file
59
pkgs/tools/wayland/wl-color-picker/default.nix
Normal file
@ -0,0 +1,59 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, slurp
|
||||
, grim
|
||||
, gnome
|
||||
, wl-clipboard
|
||||
, imagemagick
|
||||
, makeWrapper
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "wl-color-picker";
|
||||
version = "1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jgmdev";
|
||||
repo = "wl-color-picker";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-lvhpXy4Sd1boYNGhbPoZTJlBhlW5obltDOrEzB1Gq0A=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace Makefile \
|
||||
--replace 'which' 'ls' \
|
||||
--replace 'grim' "${grim}/bin/grim" \
|
||||
--replace 'slurp' "${slurp}/bin/slurp" \
|
||||
--replace 'convert' "${imagemagick}/bin/convert" \
|
||||
--replace 'zenity' "${gnome.zenity}/bin/zenity" \
|
||||
--replace 'wl-copy' "${wl-clipboard}/bin/wl-copy"
|
||||
'';
|
||||
|
||||
installFlags = [
|
||||
"DESTDIR=${placeholder "out"}"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/usr/bin/wl-color-picker \
|
||||
--prefix PATH : ${lib.makeBinPath [
|
||||
grim
|
||||
slurp
|
||||
imagemagick
|
||||
gnome.zenity
|
||||
wl-clipboard
|
||||
]}
|
||||
mkdir -p $out/bin
|
||||
ln -s $out/usr/bin/wl-color-picker $out/bin/wl-color-picker
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Wayland color picker that also works on wlroots";
|
||||
homepage = "https://github.com/jgmdev/wl-color-picker";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ onny ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -2731,6 +2731,8 @@ with pkgs;
|
||||
|
||||
wl-clipboard-x11 = callPackage ../tools/wayland/wl-clipboard-x11 { };
|
||||
|
||||
wl-color-picker = callPackage ../tools/wayland/wl-color-picker { };
|
||||
|
||||
wl-mirror = callPackage ../tools/wayland/wl-mirror { };
|
||||
|
||||
wlogout = callPackage ../tools/wayland/wlogout { };
|
||||
|
Loading…
Reference in New Issue
Block a user