slurp: init at 1.0
This commit is contained in:
parent
ba9d958adf
commit
1985772977
33
pkgs/tools/misc/slurp/default.nix
Normal file
33
pkgs/tools/misc/slurp/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ stdenv, fetchFromGitHub, cairo, meson, ninja, wayland, pkgconfig, wayland-protocols }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "slurp-${version}";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "emersion";
|
||||
repo = "slurp";
|
||||
rev = "v${version}";
|
||||
sha256 = "03igv8r8n772xb0y7whhs1pa298l3d94jbnknaxpwp2n4fi04syb";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
pkgconfig
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
cairo
|
||||
wayland
|
||||
wayland-protocols
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Grab images from a Wayland compositor";
|
||||
homepage = https://github.com/emersion/grim;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ buffet ];
|
||||
};
|
||||
}
|
@ -14138,6 +14138,8 @@ in
|
||||
|
||||
slurm-spank-x11 = callPackage ../servers/computing/slurm-spank-x11 { };
|
||||
|
||||
slurp = callPackage ../tools/misc/slurp { };
|
||||
|
||||
systemd-journal2gelf = callPackage ../tools/system/systemd-journal2gelf { };
|
||||
|
||||
inherit (callPackages ../servers/http/tomcat { })
|
||||
|
Loading…
Reference in New Issue
Block a user