File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 23
23
{
24
24
overlays = final : prev : {
25
25
datomic-pro = pkgs . callPackage ./pkgs/datomic-pro.nix { } ;
26
- datomic-pro-container = pkgs . callPackage ./pkgs/datomic-pro-container-image.nix { } ;
26
+ datomic-pro-container = pkgs . callPackage ./pkgs/datomic-pro-container-image.nix {
27
+ imageTag = final . datomic-pro . version ;
28
+ } ;
29
+ datomic-pro-container-unstable = pkgs . callPackage ./pkgs/datomic-pro-container-image.nix {
30
+ imageTag = "unstable" ;
31
+ } ;
27
32
datomic-generate-properties = pkgs . callPackage ./pkgs/datomic-generate-properties.nix { } ;
28
33
} ;
29
34
packages = {
30
35
default = self . packages . ${ system } . datomic-pro ;
31
36
datomic-pro = pkgs . datomic-pro ;
32
37
datomic-pro-container = pkgs . datomic-pro-container ;
38
+ datomic-pro-container-unstable = pkgs . datomic-pro-container-unstable ;
33
39
datomic-generate-properties = pkgs . datomic-generate-properties ;
34
40
} ;
35
41
nixosModules = {
Original file line number Diff line number Diff line change 1
1
{
2
+ imageTag ,
2
3
lib ,
3
4
stdenv ,
4
5
fetchzip ,
45
46
in
46
47
dockerTools . buildLayeredImage {
47
48
name = "ghcr.io/ramblurr/datomic-pro" ;
48
- tag = datomic-pro . version ;
49
+ tag = imageTag ;
49
50
fromImage = null ;
50
51
contents = [
51
52
datomic-pro
You can’t perform that action at this time.
0 commit comments