pgmanage: use a valid version number

+4 -7
+4 -7
pkgs/applications/misc/pgmanage/default.nix
··· 1 { lib, stdenv, fetchFromGitHub, postgresql, openssl, nixosTests } : 2 - let 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"; 8 9 src = fetchFromGitHub { 10 owner = "pgManage"; 11 repo = "pgManage"; 12 + rev = "a028604416be382d6d310bc68b4e7c3cd16020fb"; 13 sha256 = "sha256-ibCzZrqfbio1wBVFKB6S/wdRxnCc7s3IQdtI9txxhaM="; 14 }; 15