pokeall: init
This commit is contained in:
parent
791d40b4ab
commit
21875f2d3d
|
@ -7,5 +7,7 @@ final: prev: {
|
||||||
red = prev.callPackage ./pokered { };
|
red = prev.callPackage ./pokered { };
|
||||||
|
|
||||||
yellow = prev.callPackage ./pokeyellow { };
|
yellow = prev.callPackage ./pokeyellow { };
|
||||||
|
|
||||||
|
all = prev.callPackage ./pokeall { };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,5 +47,7 @@
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
pokegb;
|
pokegb;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
defaultPackage = packages."pokegb/all";
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
14
pokeall/default.nix
Normal file
14
pokeall/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ lib, symlinkJoin, pokegb }:
|
||||||
|
|
||||||
|
symlinkJoin {
|
||||||
|
name = "pokeall";
|
||||||
|
|
||||||
|
paths = lib.attrValues
|
||||||
|
(lib.filterAttrs
|
||||||
|
(n: v: lib.isDerivation v && n != "all")
|
||||||
|
pokegb);
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "All ROMs from the pokegb-nix overlay combined";
|
||||||
|
};
|
||||||
|
}
|
Reference in a new issue