1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

Merge pull request #177393 from nek0/krita_5_0_8

krita: 5.0.6 -> 5.0.8
This commit is contained in:
Sandro 2022-06-12 20:23:05 +02:00 committed by GitHub
commit b319b5eb26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 7 deletions

View file

@ -9123,6 +9123,12 @@
githubId = 166791; githubId = 166791;
name = "Neil Mayhew"; name = "Neil Mayhew";
}; };
nek0 = {
email = "nek0@nek0.eu";
github = "nek0";
githubId = 1859691;
name = "Amedeo Molnár";
};
nelsonjeppesen = { nelsonjeppesen = {
email = "nix@jeppesen.io"; email = "nix@jeppesen.io";
github = "NelsonJeppesen"; github = "NelsonJeppesen";

View file

@ -1,7 +1,7 @@
{ callPackage, ... } @ args: { callPackage, ... } @ args:
callPackage ./generic.nix (args // { callPackage ./generic.nix (args // {
version = "5.0.6"; version = "5.0.8";
kde-channel = "stable"; kde-channel = "stable";
sha256 = "sha256:0qhf7vm13v33yk67n7wdcgrqpk7yvajdlkqcp7zhrl2z7qdnvmzd"; sha256 = "sha256:7R0fpQc+4MQVDh/enhCTgpgOqU0y5YRShrv/ILa/XkU=";
}) })

View file

@ -54,16 +54,14 @@ mkDerivation rec {
"-DCMAKE_BUILD_TYPE=RelWithDebInfo" "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
]; ];
postInstall = '' preInstall = ''
for i in $out/bin/*; do qtWrapperArgs+=(--prefix PYTHONPATH : "$PYTHONPATH")
wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
done
''; '';
meta = with lib; { meta = with lib; {
description = "A free and open source painting application"; description = "A free and open source painting application";
homepage = "https://krita.org/"; homepage = "https://krita.org/";
maintainers = with maintainers; [ abbradar sifmelcara ]; maintainers = with maintainers; [ abbradar sifmelcara nek0 ];
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.gpl3Only; license = licenses.gpl3Only;
}; };