nixpkgs/pkgs/applications/graphics/vipsdisp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
913 B
Nix
Raw Normal View History

2022-11-12 12:53:24 +00:00
{ stdenv
, lib
, fetchFromGitHub
, meson
, ninja
, pkg-config
, wrapGAppsHook4
, vips
, gtk4
, python3
}:
stdenv.mkDerivation rec {
pname = "vipsdisp";
2024-01-07 15:22:07 +00:00
version = "2.6.3";
2022-11-12 12:53:24 +00:00
src = fetchFromGitHub {
owner = "jcupitt";
repo = "vipsdisp";
rev = "v${version}";
2024-01-07 15:22:07 +00:00
hash = "sha256-a8wqDTVZnhqk0zHAuGvwjtJTM0irN2tkRIjx6sIteV0=";
2022-11-12 12:53:24 +00:00
};
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;
2023-09-09 14:52:40 +00:00
mainProgram = "vipsdisp";
2022-11-12 12:53:24 +00:00
maintainers = with maintainers; [ foo-dogsquared ];
2023-09-09 19:35:07 +00:00
platforms = platforms.unix;
2022-11-12 12:53:24 +00:00
};
}