nixpkgs/pkgs/by-name/vi/vipsdisp/package.nix

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

63 lines
1.2 KiB
Nix
Raw Normal View History

2022-11-12 12:53:24 +00:00
{ stdenv
, lib
, fetchFromGitHub
, fetchpatch2
2022-11-12 12:53:24 +00:00
, 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
};
patches = [
# Fixes build with clang
(fetchpatch2 {
url = "https://github.com/jcupitt/vipsdisp/commit/e95888153838d6e58d5b9fd7c08e3d03db38e8b1.patch?full_index=1";
hash = "sha256-MtQ9AMvl2MkHSLyOuwFVbmNiCEoPPnrK3EoUdvqEtOo=";
})
];
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
};
}