Refactor Nix package definitions for improved clarity and consistency, including updates to overlays, dependencies, and build inputs across multiple packages.
This commit is contained in:
@@ -28,8 +28,8 @@
|
||||
|> builtins.listToAttrs;
|
||||
in
|
||||
{
|
||||
overlays.default = final: prev: {
|
||||
scrapy = prev.scrapy.overrideAttrs (old: rec {
|
||||
overlays.default = _final: prev: {
|
||||
scrapy = prev.scrapy.overrideAttrs (_old: rec {
|
||||
version = "2.11.2";
|
||||
src = prev.fetchFromGitHub {
|
||||
owner = "scrapy";
|
||||
@@ -42,7 +42,7 @@
|
||||
packages.x86_64-linux =
|
||||
let
|
||||
scriptBin = path: name: pkgs.writeScriptBin name (builtins.readFile path);
|
||||
pkgsBin = path: name: pkgs.callPackage path { };
|
||||
pkgsBin = path: _name: pkgs.callPackage path { };
|
||||
in
|
||||
{
|
||||
citra = pkgs.callPackage ./pkgs/citra/default.nix { branch = "nightly"; };
|
||||
|
||||
Reference in New Issue
Block a user