File tree Expand file tree Collapse file tree 4 files changed +27
-1
lines changed Expand file tree Collapse file tree 4 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1+ result
Original file line number Diff line number Diff line change 7070 devShells . x86_64-linux . default = pkgs . mkShell {
7171 buildInputs = [ inputs . attic . packages . x86_64-linux . attic-client ] ;
7272 } ;
73+ packages . x86_64-linux = import ./packages.nix { inherit inputs pkgs ; } ;
7374 formatter . x86_64-linux = pkgs . nixfmt-rfc-style ;
7475 nixosConfigurations = self . lib . importHosts ./hosts {
7576 inherit inputs ;
Original file line number Diff line number Diff line change 1- { pkgs , inputs } : ( self : super : pkgs . callPackage ./packages.nix { inherit inputs ; } )
1+ { pkgs , inputs } : ( self : super : import ./packages.nix { inherit inputs pkgs ; } )
Original file line number Diff line number Diff line change 11{ pkgs , inputs } :
22{
3+ git-toprepo = inputs . git-toprepo . packages . ${ pkgs . system } . git-toprepo ;
4+ oils-for-unix = let
5+ pname = "oils-for-unix" ;
6+ version = "0.33.0" ;
7+ in pkgs . stdenv . mkDerivation {
8+ inherit pname version ;
9+ src = builtins . fetchTarball {
10+ url = "https://oils.pub/download/oils-for-unix-${ version } .tar.gz" ;
11+ sha256 = "sha256:0y4pg6sz5dzyvhvx490yhbxi7603dhjmsxjqrqram7iax8xvpvfa" ;
12+ } ;
13+
14+ buildInputs = with pkgs ; [
15+ readline
16+ ] ;
17+
18+ buildPhase = ''
19+ _build/oils.sh
20+ '' ;
21+
22+ installPhase = ''
23+ mkdir -p $out
24+ ./install
25+ '' ;
26+ } ;
327}
You can’t perform that action at this time.
0 commit comments