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

authored by Sergei Zimmerman and committed by sternenseemann 1033ce03 29957cb2

+5 -3
+5 -3
pkgs/by-name/lo/lowdown/package.nix
··· 5 fixDarwinDylibNames, 6 which, 7 dieHook, 8 enableShared ? !stdenv.hostPlatform.isStatic, 9 enableStatic ? stdenv.hostPlatform.isStatic, 10 enableDarwinSandbox ? true, ··· 16 pname = "lowdown${ 17 lib.optionalString (stdenv.hostPlatform.isDarwin && !enableDarwinSandbox) "-unsandboxed" 18 }"; 19 - version = "1.3.2"; 20 21 outputs = [ 22 "out" ··· 27 28 src = fetchurl { 29 url = "https://kristaps.bsd.lv/lowdown/snapshots/lowdown-${version}.tar.gz"; 30 - hash = "sha512-IQmgPm2zE+B82Zdg+ldjtU/XI+qab9YRAzwzRMYv32KKjql0YLDEgc/m6DbgyCiNBkulD0dVExCtrTM+nBFHzw=="; 31 }; 32 33 nativeBuildInputs = [ 34 which 35 dieHook 36 ] 37 ++ lib.optionals stdenv.hostPlatform.isDarwin [ fixDarwinDylibNames ]; 38 ··· 74 75 postInstall = 76 let 77 - soVersion = "1"; 78 in 79 80 # Check that soVersion is up to date even if we are not on darwin
··· 5 fixDarwinDylibNames, 6 which, 7 dieHook, 8 + bmake, 9 enableShared ? !stdenv.hostPlatform.isStatic, 10 enableStatic ? stdenv.hostPlatform.isStatic, 11 enableDarwinSandbox ? true, ··· 17 pname = "lowdown${ 18 lib.optionalString (stdenv.hostPlatform.isDarwin && !enableDarwinSandbox) "-unsandboxed" 19 }"; 20 + version = "2.0.2"; 21 22 outputs = [ 23 "out" ··· 28 29 src = fetchurl { 30 url = "https://kristaps.bsd.lv/lowdown/snapshots/lowdown-${version}.tar.gz"; 31 + hash = "sha512-cfzhuF4EnGmLJf5EGSIbWqJItY3npbRSALm+GarZ7SMU7Hr1xw0gtBFMpOdi5PBar4TgtvbnG4oRPh+COINGlA=="; 32 }; 33 34 nativeBuildInputs = [ 35 which 36 dieHook 37 + bmake # Uses FreeBSD's dialect 38 ] 39 ++ lib.optionals stdenv.hostPlatform.isDarwin [ fixDarwinDylibNames ]; 40 ··· 76 77 postInstall = 78 let 79 + soVersion = "2"; 80 in 81 82 # Check that soVersion is up to date even if we are not on darwin