Merge pull request #260750 from adamcstephens/cowsql/0.15.2

cowsql: unstable-2023-09-21 -> 0.15.2
This commit is contained in:
Weijia Wang 2023-10-14 23:50:24 +02:00 committed by GitHub
commit 62e8a99761
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,18 +7,18 @@
, raft-cowsql
, sqlite
, incus
, unstableGitUpdater
, gitUpdater
}:
stdenv.mkDerivation rec {
pname = "cowsql";
version = "unstable-2023-09-21";
version = "0.15.2";
src = fetchFromGitHub {
owner = "cowsql";
repo = "cowsql";
rev = "b728f0a43b9ad416f9c5fa1fda8b205c7a469d80";
hash = "sha256-B4ORrsUTfk/7glSpDndw1fCfFmd72iFr+2Xm5CryeZQ=";
rev = "refs/tags/v${version}";
hash = "sha256-+za3pIcV4BhoImKvJlKatCK372wL4OyPbApQvGxGGGk=";
};
nativeBuildInputs = [
@ -43,7 +43,9 @@ stdenv.mkDerivation rec {
inherit incus;
};
updateScript = unstableGitUpdater { };
updateScript = gitUpdater {
rev-prefix = "v";
};
};
meta = with lib; {