Merge pull request #147416 from erictapen/scribusUnstable
This commit is contained in:
commit
8d73f87620
1 changed files with 17 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
||||||
, cmake
|
, cmake
|
||||||
, cups
|
, cups
|
||||||
, fetchurl
|
, fetchurl
|
||||||
|
, fetchpatch
|
||||||
, fontconfig
|
, fontconfig
|
||||||
, freetype
|
, freetype
|
||||||
, harfbuzzFull
|
, harfbuzzFull
|
||||||
|
@ -42,6 +43,19 @@ mkDerivation rec {
|
||||||
sha256 = "sha256-MYMWss/Hp2GR0+DT+MImUUfa6gVwFiAo4kPCktgm+M4=";
|
sha256 = "sha256-MYMWss/Hp2GR0+DT+MImUUfa6gVwFiAo4kPCktgm+M4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# For harfbuzz >= 2.9.0
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/scribusproject/scribus/commit/1b546978bc4ea0b2a73fbe4d7cf947887e865162.patch";
|
||||||
|
sha256 = "sha256-noRCaN63ZYFfXmAluEYXdFPNOk3s5W3KBAsLU1Syxv4=";
|
||||||
|
})
|
||||||
|
# For harfbuzz >= 3.0
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/scribusproject/scribus/commit/68ec41169eaceea4a6e1d6f359762a191c7e61d5.patch";
|
||||||
|
sha256 = "sha256-xhp65qVvaof0md1jb3XHZw7uFX1RtNxPfUOaVnvZV1Y=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
cmake
|
cmake
|
||||||
pkg-config
|
pkg-config
|
||||||
|
@ -77,10 +91,11 @@ mkDerivation rec {
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
description = "Desktop Publishing (DTP) and Layout program for Linux";
|
description = "Desktop Publishing (DTP) and Layout program for Linux";
|
||||||
homepage = "https://www.scribus.net";
|
homepage = "https://www.scribus.net";
|
||||||
# There are a lot of licenses... https://github.com/scribusproject/scribus/blob/20508d69ca4fc7030477db8dee79fd1e012b52d2/COPYING#L15-L19
|
# There are a lot of licenses...
|
||||||
|
# https://github.com/scribusproject/scribus/blob/20508d69ca4fc7030477db8dee79fd1e012b52d2/COPYING#L15-L19
|
||||||
license = with licenses; [
|
license = with licenses; [
|
||||||
bsd3
|
bsd3
|
||||||
gpl2
|
gpl2Plus
|
||||||
mit
|
mit
|
||||||
publicDomain
|
publicDomain
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue