tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pgmanage: use a valid version number
Bas van Dijk
2 years ago
8195adcf
dd2c53cb
+4
-7
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
pgmanage
default.nix
+4
-7
pkgs/applications/misc/pgmanage/default.nix
···
1
{ lib, stdenv, fetchFromGitHub, postgresql, openssl, nixosTests } :
2
-
let
0
3
# The last release 11.0.1 from 2018 fails the NixOS test
4
# probably because of PostgreSQL-12 incompatibility.
5
# Fortunately the latest master does succeed the test.
6
-
rev = "a028604416be382d6d310bc68b4e7c3cd16020fb";
7
-
in
8
-
stdenv.mkDerivation rec {
9
-
pname = "pgmanage";
10
-
version = "11.0.1-git-${builtins.substring 0 7 rev}";
11
12
src = fetchFromGitHub {
13
owner = "pgManage";
14
repo = "pgManage";
15
-
inherit rev;
16
sha256 = "sha256-ibCzZrqfbio1wBVFKB6S/wdRxnCc7s3IQdtI9txxhaM=";
17
};
18
···
1
{ lib, stdenv, fetchFromGitHub, postgresql, openssl, nixosTests } :
2
+
stdenv.mkDerivation rec {
3
+
pname = "pgmanage";
4
# The last release 11.0.1 from 2018 fails the NixOS test
5
# probably because of PostgreSQL-12 incompatibility.
6
# Fortunately the latest master does succeed the test.
7
+
version = "unstable-2022-05-11";
0
0
0
0
8
9
src = fetchFromGitHub {
10
owner = "pgManage";
11
repo = "pgManage";
12
+
rev = "a028604416be382d6d310bc68b4e7c3cd16020fb";
13
sha256 = "sha256-ibCzZrqfbio1wBVFKB6S/wdRxnCc7s3IQdtI9txxhaM=";
14
};
15