ghostscriptX: remove appendToName to have a consistent package name for repology
This commit is contained in:
parent
48324d4d19
commit
c01851e31c
2 changed files with 4 additions and 4 deletions
|
@ -29,11 +29,11 @@ let
|
||||||
|
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "ghostscript";
|
pname = "ghostscript${lib.optionalString (x11Support) "-with-X"}";
|
||||||
version = "9.55.0";
|
version = "9.55.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs9${lib.versions.minor version}${lib.versions.patch version}/${pname}-${version}.tar.xz";
|
url = "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs9${lib.versions.minor version}${lib.versions.patch version}/ghostscript-${version}.tar.xz";
|
||||||
sha512 = "27g72152mlwlalg232jxdhaf3ykgmqwi2pccbkwfygql1h9iz40plfbwbs1n0fkvm4zwzg5r9cr8g7w2dxih4jldiidv7rflxdy1is2";
|
sha512 = "27g72152mlwlalg232jxdhaf3ykgmqwi2pccbkwfygql1h9iz40plfbwbs1n0fkvm4zwzg5r9cr8g7w2dxih4jldiidv7rflxdy1is2";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -33070,10 +33070,10 @@ with pkgs;
|
||||||
|
|
||||||
ghostscript = callPackage ../misc/ghostscript { };
|
ghostscript = callPackage ../misc/ghostscript { };
|
||||||
|
|
||||||
ghostscriptX = appendToName "with-X" (ghostscript.override {
|
ghostscriptX = ghostscript.override {
|
||||||
cupsSupport = true;
|
cupsSupport = true;
|
||||||
x11Support = true;
|
x11Support = true;
|
||||||
});
|
};
|
||||||
|
|
||||||
glava = callPackage ../applications/misc/glava {};
|
glava = callPackage ../applications/misc/glava {};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue