Merge pull request #209737 from sikmir/azpainter

azpainter: 3.0.4 → 3.0.6
This commit is contained in:
Nikolay Korotkiy 2023-01-29 11:09:21 +04:00 committed by GitHub
commit 18cb915e77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitLab
, desktop-file-utils, shared-mime-info
, desktop-file-utils, shared-mime-info, ninja, pkg-config
, libiconv
, libX11, libXcursor, libXext, libXi
, freetype, fontconfig
@ -9,18 +9,20 @@
stdenv.mkDerivation rec {
pname = "azpainter";
version = "3.0.4";
version = "3.0.6";
src = fetchFromGitLab {
owner = "azelpg";
repo = pname;
rev = "v${version}";
hash = "sha256-2gTTF1ti9bO24d75mhwyvJISSgMKdmp+oJVmgzEQHdY=";
hash = "sha256-/shmLdZ4mCBZAeUuqJtCiUjeI8B5f/8dIGPqmXMjZ1I=";
};
nativeBuildInputs = [
desktop-file-utils # for update-desktop-database
shared-mime-info # for update-mime-info
ninja
pkg-config
];
buildInputs = [
@ -30,6 +32,10 @@ stdenv.mkDerivation rec {
zlib
] ++ lib.optionals stdenv.isDarwin [ libiconv ];
preBuild = ''
cd build
'';
enableParallelBuilding = true;
meta = with lib; {