liblognorm: Refactor package definitions

This commit is contained in:
Guy Chronister
2025-06-12 19:31:16 +00:00
parent caacc294e6
commit 420f7652c0
+7 -7
View File
@@ -9,13 +9,13 @@
fastJson, fastJson,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "liblognorm"; pname = "liblognorm";
version = "2.0.6"; version = "2.0.6";
src = fetchurl { src = fetchurl {
url = "http://www.liblognorm.com/files/download/liblognorm-${version}.tar.gz"; url = "http://www.liblognorm.com/files/download/liblognorm-${finalAttrs.version}.tar.gz";
sha256 = "1wpn15c617r7lfm1z9d5aggmmi339s6yn4pdz698j0r2bkl5gw6g"; hash = "sha256-z/BX6FwiA4mS+e0S641OY8Ra31OlpR+qoyefYFgJ9vI=";
}; };
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
@@ -28,11 +28,11 @@ stdenv.mkDerivation rec {
configureFlags = [ "--enable-regexp" ]; configureFlags = [ "--enable-regexp" ];
meta = with lib; { meta = {
description = "Help to make sense out of syslog data, or, actually, any event data that is present in text form"; description = "Help to make sense out of syslog data, or, actually, any event data that is present in text form";
homepage = "https://www.liblognorm.com/"; homepage = "https://www.liblognorm.com/";
license = licenses.lgpl21; license = lib.licenses.lgpl21;
mainProgram = "lognormalizer"; mainProgram = "lognormalizer";
platforms = platforms.all; platforms = lib.platforms.all;
}; };
} })