postgresqlPackages.hypopg: 1.4.0 -> 1.4.1
This commit is contained in:
parent
0b6fa5ee40
commit
c64122f97d
@ -1,14 +1,14 @@
|
||||
{ lib, stdenv, fetchFromGitHub, postgresql }:
|
||||
{ lib, stdenv, fetchFromGitHub, postgresql, gitUpdater }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hypopg";
|
||||
version = "1.4.0";
|
||||
version = "1.4.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "HypoPG";
|
||||
repo = "hypopg";
|
||||
rev = version;
|
||||
hash = "sha256-YzQnkQi9BlDryUySnWHWeTanhgfVUXjHjOqj+nQucCY=";
|
||||
hash = "sha256-88uKPSnITRZ2VkelI56jZ9GWazG/Rn39QlyHKJKSKMM=";
|
||||
};
|
||||
|
||||
buildInputs = [ postgresql ];
|
||||
@ -19,6 +19,12 @@ stdenv.mkDerivation rec {
|
||||
install -D -t $out/share/postgresql/extension *.sql
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
updateScript = gitUpdater {
|
||||
ignoredVersions = "beta";
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Hypothetical Indexes for PostgreSQL";
|
||||
homepage = "https://hypopg.readthedocs.io";
|
||||
|
Loading…
Reference in New Issue
Block a user