File tree Expand file tree Collapse file tree 1 file changed +0
-50
lines changed
Expand file tree Collapse file tree 1 file changed +0
-50
lines changed Original file line number Diff line number Diff line change 1818 } ;
1919 } ;
2020
21- outputs =
22- {
23- self ,
24- nixpkgs ,
25- nix-bundle-exe ,
26- gomod2nix ,
27- flake-utils ,
28- poetry2nix ,
29- } :
30- let
31- rev = self . shortRev or "dirty" ;
32- mkApp = drv : {
33- type = "app" ;
34- program = "${ drv } /bin/${ drv . meta . mainProgram } " ;
35- } ;
36- in
37- ( flake-utils . lib . eachDefaultSystem (
38- system :
39- let
40- pkgs = import nixpkgs {
41- inherit system ;
42- overlays = self . overlays . default ;
43- config = { } ;
44- } ;
45- in
46- rec {
47- packages = pkgs . cronos-matrix // {
48- inherit ( pkgs ) rocksdb testground-image ;
49- } ;
50- apps = {
51- {
52- inputs = {
53- nixpkgs . url = "github:NixOS/nixpkgs/release-24.05" ;
54- flake-utils . url = "github:numtide/flake-utils" ;
55- nix-bundle-exe = {
56- url = "github:3noch/nix-bundle-exe" ;
57- flake = false ;
58- } ;
59- gomod2nix = {
60- url = "github:obreitwi/gomod2nix/fix/go_mod_vendor" ;
61- inputs . nixpkgs . follows = "nixpkgs" ;
62- inputs . flake-utils . follows = "flake-utils" ;
63- } ;
64- poetry2nix = {
65- url = "github:nix-community/poetry2nix" ;
66- inputs . nixpkgs . follows = "nixpkgs" ;
67- inputs . flake-utils . follows = "flake-utils" ;
68- } ;
69- } ;
70-
7121 outputs =
7222 {
7323 self ,
You can’t perform that action at this time.
0 commit comments