libpaper: 1.1.29 -> 2.2.8 (#529265)

This commit is contained in:
dotlambda 2026-06-21 23:17:25 +00:00 committed by GitHub
commit e70024cb87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,12 +6,12 @@
}:
stdenv.mkDerivation (finalAttrs: {
version = "1.1.29";
version = "2.2.8";
pname = "libpaper";
src = fetchurl {
url = "mirror://debian/pool/main/libp/libpaper/libpaper_${finalAttrs.version}.tar.gz";
hash = "sha256-JjMOIemjEkZY1RX9hQsM3lRv9C2JsllqUmTF8Wd/BUc=";
url = "https://github.com/rrthomas/libpaper/releases/download/v${finalAttrs.version}/libpaper-${finalAttrs.version}.tar.gz";
hash = "sha256-HjMFcWkBkYdOykFex2iJ3RG6uYh6IwLWo2Zc0IHE13s=";
};
nativeBuildInputs = [ autoreconfHook ];
@ -36,9 +36,15 @@ stdenv.mkDerivation (finalAttrs: {
'';
meta = {
changelog = "https://github.com/rrthomas/libpaper/releases/tag/v${finalAttrs.version}";
description = "Library for handling paper characteristics";
homepage = "http://packages.debian.org/unstable/source/libpaper";
license = lib.licenses.gpl2;
homepage = "https://github.com/rrthomas/libpaper";
license = with lib.licenses; [
gpl2Only
gpl3Plus
mit
publicDomain
];
platforms = lib.platforms.unix;
};
})