Created
March 19, 2023 15:43
-
-
Save andreivasiliu/3252d473b30ad31b2427bae62a606842 to your computer and use it in GitHub Desktop.
pgtcl nix package
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From fce8a3045a4ef921f749d9e42fffe5075c6ddedc Mon Sep 17 00:00:00 2001 | |
From: Peter da Silva <[email protected]> | |
Date: Thu, 14 Jul 2022 18:46:46 +0000 | |
Subject: [PATCH 5/5] Update version number. | |
--- | |
configure.in | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
diff --git a/configure.in b/configure.in | |
index dfaed0c..0e093fe 100755 | |
--- a/configure.in | |
+++ b/configure.in | |
@@ -19,7 +19,7 @@ dnl to configure the system for the local environment. | |
# so you can encode the package version directly into the source files. | |
#----------------------------------------------------------------------- | |
-AC_INIT([pgtcl], [2.7.7]) | |
+AC_INIT([pgtcl], [3.0.1]) | |
#----- | |
# Version with patch stripped | |
-- | |
2.38.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with import <nixpkgs> { }; | |
tcl.mkTclDerivation { | |
name = "pgtcl"; | |
version = "3.0.0"; | |
src = fetchurl { | |
url = "https://github.com/flightaware/Pgtcl/archive/refs/tags/v3.0.0.tar.gz"; | |
sha256 = "8ba4914410eff28eaea6e7f4334ea699f63474615c047a31b53a8fa84fa232a7"; | |
}; | |
nativeBuildInputs = [ autoconf ]; | |
buildInputs = [ tcl postgresql ]; | |
patches = [ | |
./0005-Update-version-number.patch | |
]; | |
preConfigure = '' | |
autoreconf | |
''; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment