From 1033ce03b4c2ca08fa0ea66c255d8ef7d6737e24 Mon Sep 17 00:00:00 2001 From: Sergei Zimmerman Date: Tue, 3 Jun 2025 20:31:52 +0000 Subject: [PATCH] lowdown: 1.3.2 -> 2.0.2 https://github.com/kristapsdz/lowdown/releases/tag/VERSION_1_4_0 https://github.com/kristapsdz/lowdown/releases/tag/VERSION_2_0_0 https://github.com/kristapsdz/lowdown/releases/tag/VERSION_2_0_2 --- pkgs/by-name/lo/lowdown/package.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/lo/lowdown/package.nix b/pkgs/by-name/lo/lowdown/package.nix index 8c393af15ac2..0ed05f596982 100644 --- a/pkgs/by-name/lo/lowdown/package.nix +++ b/pkgs/by-name/lo/lowdown/package.nix @@ -5,6 +5,7 @@ fixDarwinDylibNames, which, dieHook, + bmake, enableShared ? !stdenv.hostPlatform.isStatic, enableStatic ? stdenv.hostPlatform.isStatic, enableDarwinSandbox ? true, @@ -16,7 +17,7 @@ stdenv.mkDerivation rec { pname = "lowdown${ lib.optionalString (stdenv.hostPlatform.isDarwin && !enableDarwinSandbox) "-unsandboxed" }"; - version = "1.3.2"; + version = "2.0.2"; outputs = [ "out" @@ -27,12 +28,13 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://kristaps.bsd.lv/lowdown/snapshots/lowdown-${version}.tar.gz"; - hash = "sha512-IQmgPm2zE+B82Zdg+ldjtU/XI+qab9YRAzwzRMYv32KKjql0YLDEgc/m6DbgyCiNBkulD0dVExCtrTM+nBFHzw=="; + hash = "sha512-cfzhuF4EnGmLJf5EGSIbWqJItY3npbRSALm+GarZ7SMU7Hr1xw0gtBFMpOdi5PBar4TgtvbnG4oRPh+COINGlA=="; }; nativeBuildInputs = [ which dieHook + bmake # Uses FreeBSD's dialect ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ fixDarwinDylibNames ]; @@ -74,7 +76,7 @@ stdenv.mkDerivation rec { postInstall = let - soVersion = "1"; + soVersion = "2"; in # Check that soVersion is up to date even if we are not on darwin