Unverified Commit 4bc1a069 authored by Marcin Serwin's avatar Marcin Serwin Committed by GitHub
Browse files

linenoise: 1.0-34-g93b2db9 -> 2.0 (#478673)

parents 59c46b96 78eb8514
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -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;
  };
}
})