File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 22
22
"type" : " tarball" ,
23
23
"url" : " https://github.com/NixOS/nixpkgs/archive/8a3354191c0d7144db9756a74755672387b702ba.tar.gz" ,
24
24
"url_template" : " https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
25
+ },
26
+ "stackable-cockpit" : {
27
+ "branch" : " main" ,
28
+ "description" : " Home of stackable-cockpit, stackablectl and stackable-cockpitd" ,
29
+ "homepage" : " https://docs.stackable.tech/management/stable/" ,
30
+ "owner" : " stackabletech" ,
31
+ "repo" : " stackable-cockpit" ,
32
+ "rev" : " 70049cae5ff027f7e6f0e69d0503a8bb4b751a75" ,
33
+ "sha256" : " 1hvxhkbbzbgb41h4mygy0fyxm9amavk4f7n8gfzy4nk6khwvlwyg" ,
34
+ "type" : " tarball" ,
35
+ "url" : " https://github.com/stackabletech/stackable-cockpit/archive/70049cae5ff027f7e6f0e69d0503a8bb4b751a75.tar.gz" ,
36
+ "url_template" : " https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
25
37
}
26
38
}
Original file line number Diff line number Diff line change 5
5
let
6
6
python = pkgs . python3 ;
7
7
beku = pkgs . callPackage ( sources . "beku.py" + "/beku.nix" ) { } ;
8
+ stackablectl = ( import sources . stackable-cockpit {
9
+ # doesn't build against our nixpkgs because it's missing buildGoApplication.. need to investigate
10
+ # inherit pkgs;
11
+ } ) . cargo . workspaceMembers . stackablectl . build ;
8
12
extraAnsibleDeps = pypkgs : [
9
13
# community.libvirt
10
14
pypkgs . libvirt
@@ -19,6 +23,7 @@ pkgs.mkShell rec {
19
23
buildInputs = [
20
24
ansible
21
25
beku
26
+ stackablectl
22
27
pkgs . kuttl
23
28
pkgs . gettext # for the proper envsubst
24
29
] ;
You can’t perform that action at this time.
0 commit comments