Unverified Commit 1097302b authored by Sefa Eyeoglu's avatar Sefa Eyeoglu
Browse files

cowsql: 0.15.2 -> 1.15.3



tag v0.15.2 seems to have vanished and replaced by v1.15.3. As it's a
relatively new project, we can hopefully rely on tags not vanishing from
now on

Signed-off-by: default avatarSefa Eyeoglu <contact@scrumplex.net>
parent fb3723fe
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;
  };
}
})