rang: 3.2 -> 3.3 (#532840)

This commit is contained in:
Arne Keller
2026-06-30 19:29:37 +00:00
committed by GitHub
+2 -7
View File
@@ -7,20 +7,15 @@
stdenv.mkDerivation (finalAttrs: {
pname = "rang";
version = "3.2";
version = "3.3";
src = fetchFromGitHub {
owner = "agauniyal";
repo = "rang";
tag = "v${finalAttrs.version}";
hash = "sha256-NK7jB5ijcu9OObmfLgiWxlJi4cVAhr7p6m9HKf+5TnQ=";
hash = "sha256-YJn9SnTBAJ/lPhBRjIlFgRRageeX3wximuAvbXyhgfg=";
};
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace-fail "cmake_minimum_required(VERSION 3.1)" "cmake_minimum_required(VERSION 3.10)"
'';
nativeBuildInputs = [ cmake ];
meta = {