mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 11:45:45 +03:00
vipsdisp: 2.6.3 -> 3.1.0
This commit is contained in:
parent
be55d4a7c5
commit
f7572bb58e
1 changed files with 7 additions and 15 deletions
|
@ -14,23 +14,15 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "vipsdisp";
|
pname = "vipsdisp";
|
||||||
version = "2.6.3";
|
version = "3.1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jcupitt";
|
owner = "jcupitt";
|
||||||
repo = "vipsdisp";
|
repo = "vipsdisp";
|
||||||
rev = "v${version}";
|
tag = "v${version}";
|
||||||
hash = "sha256-a8wqDTVZnhqk0zHAuGvwjtJTM0irN2tkRIjx6sIteV0=";
|
hash = "sha256-3HciPvem8ySIW/H7d5M71lQV9mBcT6ZlpF3yo8BXsPE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
|
||||||
# Fixes build with clang
|
|
||||||
(fetchpatch2 {
|
|
||||||
url = "https://github.com/jcupitt/vipsdisp/commit/e95888153838d6e58d5b9fd7c08e3d03db38e8b1.patch?full_index=1";
|
|
||||||
hash = "sha256-MtQ9AMvl2MkHSLyOuwFVbmNiCEoPPnrK3EoUdvqEtOo=";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
chmod +x ./meson_post_install.py
|
chmod +x ./meson_post_install.py
|
||||||
patchShebangs ./meson_post_install.py
|
patchShebangs ./meson_post_install.py
|
||||||
|
@ -52,12 +44,12 @@ stdenv.mkDerivation rec {
|
||||||
# No tests implemented.
|
# No tests implemented.
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
homepage = "https://github.com/jcupitt/vipsdisp";
|
homepage = "https://github.com/jcupitt/vipsdisp";
|
||||||
description = "Tiny image viewer with libvips";
|
description = "Tiny image viewer with libvips";
|
||||||
license = licenses.mit;
|
license = lib.licenses.mit;
|
||||||
mainProgram = "vipsdisp";
|
mainProgram = "vipsdisp";
|
||||||
maintainers = with maintainers; [ foo-dogsquared ];
|
maintainers = with lib.maintainers; [ foo-dogsquared ];
|
||||||
platforms = platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue