mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
69 lines
1.1 KiB
Nix
69 lines
1.1 KiB
Nix
{ 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.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "artemsen";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-UwIufR3EwbpNVHD1GypV3qNgiqDRllwtxAM0CZPodn0=";
|
|
};
|
|
|
|
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.linux;
|
|
};
|
|
}
|