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