mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
54 lines
913 B
Nix
54 lines
913 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, wrapGAppsHook4
|
|
, vips
|
|
, gtk4
|
|
, python3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vipsdisp";
|
|
version = "2.6.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jcupitt";
|
|
repo = "vipsdisp";
|
|
rev = "v${version}";
|
|
hash = "sha256-a8wqDTVZnhqk0zHAuGvwjtJTM0irN2tkRIjx6sIteV0=";
|
|
};
|
|
|
|
postPatch = ''
|
|
chmod +x ./meson_post_install.py
|
|
patchShebangs ./meson_post_install.py
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
vips
|
|
gtk4
|
|
python3
|
|
];
|
|
|
|
# No tests implemented.
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jcupitt/vipsdisp";
|
|
description = "Tiny image viewer with libvips";
|
|
license = licenses.mit;
|
|
mainProgram = "vipsdisp";
|
|
maintainers = with maintainers; [ foo-dogsquared ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|