linenoise: 1.0-34-g93b2db9 -> 2.0

This commit is contained in:
Henner Zeller
2026-01-10 15:56:55 +01:00
parent 0071076b1c
commit 78eb851495
+5 -5
View File
@@ -6,15 +6,15 @@
fixDarwinDylibNames,
}:
stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
pname = "linenoise";
version = "1.0-34-g93b2db9";
version = "2.0";
src = fetchFromGitHub {
owner = "antirez";
repo = "linenoise";
rev = "1.0-34-g93b2db9";
hash = "sha256-GsrYg16gpjHkkmpCU3yGzqNS/buZl+JoWALLvwzmT4A=";
tag = finalAttrs.version;
hash = "sha256-lqJ/ecw7Q4QyDVXVFrxHL5EbNZOHpy5WruQn4VNibNA=";
};
nativeBuildInputs = [
@@ -54,4 +54,4 @@ stdenv.mkDerivation {
platforms = lib.platforms.unix;
license = lib.licenses.bsd2;
};
}
})