File tree 5 files changed +20
-5
lines changed
5 files changed +20
-5
lines changed Original file line number Diff line number Diff line change 5
5
nix-inclusive = pkgs . callPackage "${ pkgs . sources . nix-inclusive } /inclusive.nix" { } ;
6
6
cardano-graphql = self . callPackage ./cardano-graphql.nix { } ;
7
7
hasura-cli-ext = self . callPackage ./hasura-cli-ext/impure.nix { } ;
8
- persistgraphql = ( self . callPackage ./persistgraphql { } ) . persistgraphql ;
8
+ persistgraphql = ( self . callPackage ./persistgraphql { nodejs = pkgs . nodejs-14_x ; } ) . persistgraphql ;
9
9
hasura-cli = pkgs . hasura-cli . overrideAttrs ( _ : rec {
10
10
src = pkgs . sources . graphql-engine ;
11
11
name = "hasura-${ version } " ;
Original file line number Diff line number Diff line change 14
14
sources . nixpkgs )
15
15
else ( import sources . iohk-nix { } ) . nixpkgs ;
16
16
17
+ nixpkgs2205 = import sources . "nixpkgs-22.05" { } ;
18
+
17
19
overlay = self : super : {
18
- packages = self . callPackages ./packages.nix { } ;
19
- nodejs = super . nodejs-14_x ;
20
+ packages = self . callPackages ./packages.nix { } ;
21
+ #nodejs = super.nodejs-14_x;
22
+ nodejs = nixpkgs2205 . nodejs-16_x ;
20
23
inherit sources ;
21
24
} ;
22
25
pkgs = import nixpkgs {
Original file line number Diff line number Diff line change 62
62
"url" : " https://github.com/input-output-hk/nix-inclusive/archive/11d05e4f1ca04fd250a9734e27970ad73bbd872d.tar.gz" ,
63
63
"url_template" : " https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
64
64
},
65
+ "nixpkgs-22.05" : {
66
+ "branch" : " nixos-22.05" ,
67
+ "description" : " Nix Packages collection" ,
68
+ "homepage" : " " ,
69
+ "owner" : " NixOS" ,
70
+ "repo" : " nixpkgs" ,
71
+ "rev" : " b82ccafb54163ab9024e893e578d840577785fea" ,
72
+ "sha256" : " 0jr9gjpxrmgxc12y2883rcdlkhbv1qwghgcqz2w7mjnpp11l36b4" ,
73
+ "type" : " tarball" ,
74
+ "url" : " https://github.com/NixOS/nixpkgs/archive/b82ccafb54163ab9024e893e578d840577785fea.tar.gz" ,
75
+ "url_template" : " https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
76
+ },
65
77
"pg-client-hs" : {
66
78
"branch" : " master" ,
67
79
"builtin" : false ,
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ lib.fix (self: {
27
27
required = releaseTools . aggregate {
28
28
name = "required" ;
29
29
constituents = with self ; [
30
- cardano-graphql
30
+ self . cardano-graphql
31
31
graphql-engine
32
32
hasura-cli
33
33
hasura-cli-ext
Original file line number Diff line number Diff line change 21
21
nodejs # Event-driven I/O framework for the V8 JavaScript engine
22
22
packages . cardano-graphql
23
23
pkgconfig # Allows packages to find out information about other packages
24
- persistgraphql
24
+ packages . persistgraphql
25
25
hasura-cli
26
26
python # The Python Programming language
27
27
tmux # Terminal multiplexer
You can’t perform that action at this time.
0 commit comments