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: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
parent
fb3723fe52
commit
1097302bf2
1 changed files with 4 additions and 4 deletions
|
@ -10,14 +10,14 @@
|
||||||
, gitUpdater
|
, gitUpdater
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "cowsql";
|
pname = "cowsql";
|
||||||
version = "0.15.2";
|
version = "1.15.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cowsql";
|
owner = "cowsql";
|
||||||
repo = "cowsql";
|
repo = "cowsql";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${finalAttrs.version}";
|
||||||
hash = "sha256-+za3pIcV4BhoImKvJlKatCK372wL4OyPbApQvGxGGGk=";
|
hash = "sha256-+za3pIcV4BhoImKvJlKatCK372wL4OyPbApQvGxGGGk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -55,4 +55,4 @@ stdenv.mkDerivation rec {
|
||||||
maintainers = with maintainers; [ adamcstephens ];
|
maintainers = with maintainers; [ adamcstephens ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Reference in a new issue