forked from mirrors/nixpkgs
Merge pull request #199286 from MatthewCroughan/mc/swayimg
swayimg: init at 1.9
This commit is contained in:
commit
28df3aa589
68
pkgs/tools/wayland/swayimg/default.nix
Normal file
68
pkgs/tools/wayland/swayimg/default.nix
Normal file
|
@ -0,0 +1,68 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, wayland
|
||||
, wayland-protocols
|
||||
, json_c
|
||||
, libxkbcommon
|
||||
, fontconfig
|
||||
, giflib
|
||||
, libheif
|
||||
, libjpeg
|
||||
, libwebp
|
||||
, libtiff
|
||||
, librsvg
|
||||
, libpng
|
||||
, libjxl
|
||||
, libexif
|
||||
, bash-completion
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "swayimg";
|
||||
version = "1.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "artemsen";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-864riSvWhWV4X84UeZ+xfQBOAQmwMrX6s90TXMGeruY=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
depsBuildBuild = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||
|
||||
buildInputs = [
|
||||
bash-completion
|
||||
wayland
|
||||
wayland-protocols
|
||||
json_c
|
||||
libxkbcommon
|
||||
fontconfig
|
||||
giflib
|
||||
libheif
|
||||
libjpeg
|
||||
libwebp
|
||||
libtiff
|
||||
librsvg
|
||||
libpng
|
||||
libjxl
|
||||
libexif
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/artemsen/swayimg";
|
||||
description = "Image viewer for Sway/Wayland";
|
||||
changelog = "https://github.com/artemsen/swayimg/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ matthewcroughan ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -3527,6 +3527,8 @@ with pkgs;
|
|||
|
||||
swaysome = callPackage ../tools/wayland/swaysome { };
|
||||
|
||||
swayimg = callPackage ../tools/wayland/swayimg { };
|
||||
|
||||
swaytools = python3Packages.callPackage ../tools/wayland/swaytools { };
|
||||
|
||||
wayland-utils = callPackage ../tools/wayland/wayland-utils { };
|
||||
|
|
Loading…
Reference in a new issue