mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
vipsdisp: remove package
It has been upstreamed to nixpkgs.
This commit is contained in:
parent
697725c96a
commit
39d2c78335
@ -67,7 +67,6 @@ let
|
|||||||
thokr = callPackage ./thokr.nix { };
|
thokr = callPackage ./thokr.nix { };
|
||||||
segno = callPackage ./segno.nix { };
|
segno = callPackage ./segno.nix { };
|
||||||
smile = callPackage ./smile { };
|
smile = callPackage ./smile { };
|
||||||
vipsdisp = callPackage ./vipsdisp { };
|
|
||||||
vpaint = libsForQt5.callPackage ./vpaint.nix { };
|
vpaint = libsForQt5.callPackage ./vpaint.nix { };
|
||||||
vgc = qt6Packages.callPackage ./vgc { };
|
vgc = qt6Packages.callPackage ./vgc { };
|
||||||
watc = callPackage ./watc { };
|
watc = callPackage ./watc { };
|
||||||
|
@ -1,37 +0,0 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, meson, ninja, pkg-config, wrapGAppsHook4, vips, gtk4, python3 }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
pname = "vipsdisp";
|
|
||||||
version = "2.4.1";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "jcupitt";
|
|
||||||
repo = "vipsdisp";
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "sha256-zftvjH5hyWBpjRe5uQBDAqbThQaQFHz0UhzM5q8hSk8=";
|
|
||||||
};
|
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
chmod +x ./meson_post_install.py
|
|
||||||
patchShebangs ./meson_post_install.py
|
|
||||||
'';
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
meson
|
|
||||||
ninja
|
|
||||||
pkg-config
|
|
||||||
wrapGAppsHook4
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
vips
|
|
||||||
gtk4
|
|
||||||
python3
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
homepage = "https://github.com/jcupitt/vipsdisp";
|
|
||||||
description = "Tiny image viewer with libvips";
|
|
||||||
license = licenses.mit;
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user