fix eval
This commit is contained in:
parent
6d17f72824
commit
132ef46327
2 changed files with 5 additions and 1 deletions
|
@ -184,7 +184,7 @@ rec {
|
|||
}
|
||||
{
|
||||
name = "vf2"; # vision five 2
|
||||
system = "x86_64-linux"; # not a typo!
|
||||
system = "riscv64-linux";
|
||||
}
|
||||
{
|
||||
name = "devterm";
|
||||
|
|
|
@ -5,9 +5,12 @@ args: self: prev: let
|
|||
overlays = [args.self.overlays.riscv64-linux];
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
/*
|
||||
lib = pkgsX86.lib;
|
||||
*/
|
||||
in {
|
||||
pandoc = self.writeScriptBin "pandoc" "true";
|
||||
/*
|
||||
inherit (pkgsX86) nix;
|
||||
inherit (args.attic.packages.x86_64-linux) attic-client;
|
||||
bind = prev.bind.overrideAttrs (_: {
|
||||
|
@ -36,4 +39,5 @@ in {
|
|||
};
|
||||
};
|
||||
python310Packages = self.python310.pkgs;
|
||||
*/
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue