Merge pull request #261387 from Scrumplex/pkgs/cowql/1.15.3

cowsql: 0.15.2 -> 1.15.3
This commit is contained in:
Weijia Wang 2023-10-16 22:19:58 +02:00 committed by GitHub
commit 6e3f1d2ca9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,14 +10,14 @@
, gitUpdater
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "cowsql";
version = "0.15.2";
version = "1.15.3";
src = fetchFromGitHub {
owner = "cowsql";
repo = "cowsql";
rev = "refs/tags/v${version}";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-+za3pIcV4BhoImKvJlKatCK372wL4OyPbApQvGxGGGk=";
};
@ -55,4 +55,4 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ adamcstephens ];
platforms = platforms.unix;
};
}
})