Simplify nixpkgs eval

This commit is contained in:
Greg Hellings
2025-12-16 09:07:55 -06:00
parent c77c4a8ff6
commit 1a528f10de
10 changed files with 25 additions and 155 deletions
+4 -3
View File
@@ -1,6 +1,6 @@
_final: prev:
final: prev:
rec {
{
## Testing adding python packages in the correct manner
pythonPackagesExtensions = (prev.pythonPackagesExtensions or [ ]) ++ [
(
@@ -24,7 +24,7 @@ rec {
withAACS = true;
withBDplus = true;
};
handbrake = prev.handbrake.override { libbluray = libbluray-custom; };
handbrake = prev.handbrake.override { libbluray = final.libbluray-custom; };
pipenv-ivr = prev.callPackage ./pipenv.nix { };
OVMFFull = prev.OVMFFull.override {
secureBoot = true;
@@ -32,3 +32,4 @@ rec {
tpmSupport = true;
};
}
// (import ../pkgs { pkgs = prev; })