pokeall: init

master
Simon Bruder 2021-08-07 11:09:55 +02:00
parent 791d40b4ab
commit 21875f2d3d
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
3 changed files with 18 additions and 0 deletions

View File

@ -7,5 +7,7 @@ final: prev: {
red = prev.callPackage ./pokered { };
yellow = prev.callPackage ./pokeyellow { };
all = prev.callPackage ./pokeall { };
};
}

View File

@ -47,5 +47,7 @@
inherit (pkgs)
pokegb;
};
defaultPackage = packages."pokegb/all";
}));
}

14
pokeall/default.nix Normal file
View 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";
};
}