We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d27e78d commit 7702987Copy full SHA for 7702987
nix/packages/postgres.nix
@@ -1,12 +1,8 @@
1
-{ self, inputs, ... }:
+{ inputs, ... }:
2
{
3
perSystem =
4
{ pkgs, lib, ... }:
5
let
6
- gitRev = "vcs=${self.shortRev or "dirty"}+${
7
- builtins.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101")
8
- }";
9
-
10
# Custom extensions that exist in our repository. These aren't upstream
11
# either because nobody has done the work, maintaining them here is
12
# easier and more expedient, or because they may not be suitable, or are
@@ -80,7 +76,6 @@
80
76
name = "receipt";
81
77
destination = "/receipt.json";
82
78
text = builtins.toJSON {
83
- revision = gitRev;
84
79
psql-version = pgbin.version;
85
nixpkgs = {
86
revision = inputs.nixpkgs.rev;
0 commit comments