File tree Expand file tree Collapse file tree 6 files changed +58
-0
lines changed Expand file tree Collapse file tree 6 files changed +58
-0
lines changed Original file line number Diff line number Diff line change 1+ ( import ./nixpkgs.nix {
2+ crossSystem = {
3+ config = "powerpc64le-unknown-linux-gnu" ;
4+ } ;
5+ overlays = [ ( import ./overlay.nix ) ] ;
6+ } ) . callPackage ./derivation-bpf.nix
7+ { arch = "ppc64le" ; }
Original file line number Diff line number Diff line change 1+ ( import ./nixpkgs.nix {
2+ crossSystem = {
3+ config = "s390x-unknown-linux-musl" ;
4+ } ;
5+ overlays = [ ( import ./overlay.nix ) ] ;
6+ } ) . callPackage ./derivation-bpf.nix
7+ { arch = "s390x" ; }
Original file line number Diff line number Diff line change 1+ ( import ./nixpkgs.nix {
2+ crossSystem = {
3+ config = "powerpc64le-unknown-linux-gnu" ;
4+ } ;
5+ overlays = [ ( import ./overlay.nix ) ] ;
6+ } ) . callPackage ./derivation.nix
7+ { }
Original file line number Diff line number Diff line change 1+ ( import ./nixpkgs.nix {
2+ crossSystem = {
3+ config = "s390x-unknown-linux-musl" ;
4+ } ;
5+ overlays = [ ( import ./overlay.nix ) ] ;
6+ } ) . callPackage ./derivation.nix
7+ { }
Original file line number Diff line number Diff line change 1+ ( ( import ./nixpkgs.nix {
2+ crossSystem = {
3+ config = "powerpc64le-unknown-linux-gnu" ;
4+ } ;
5+ overlays = [ ( import ./overlay.nix ) ] ;
6+ } ) . callPackage ./derivation.nix
7+ { } ) . overrideAttrs ( x : {
8+ buildPhase = ''
9+ make build/spoc
10+ '' ;
11+
12+ installPhase = ''
13+ install -Dm755 -t $out build/spoc
14+ '' ;
15+ } )
Original file line number Diff line number Diff line change 1+ ( ( import ./nixpkgs.nix {
2+ crossSystem = {
3+ config = "s390x-unknown-linux-gnu" ;
4+ } ;
5+ overlays = [ ( import ./overlay.nix ) ] ;
6+ } ) . callPackage ./derivation.nix
7+ { } ) . overrideAttrs ( x : {
8+ buildPhase = ''
9+ make build/spoc
10+ '' ;
11+
12+ installPhase = ''
13+ install -Dm755 -t $out build/spoc
14+ '' ;
15+ } )
You can’t perform that action at this time.
0 commit comments