all: apply deadnix

This commit is contained in:
xeals 2022-10-26 10:51:44 +11:00
parent a70a0e914b
commit a83dcb3ed5
Signed by: xeals
GPG Key ID: A498C7AF27EC6B5C
15 changed files with 14 additions and 29 deletions

View File

@ -28,10 +28,10 @@
}; };
overlays = import ./overlays // { overlays = import ./overlays // {
pkgs = final: prev: import ./pkgs/top-level/all-packages.nix { pkgs = prev; }; pkgs = _final: prev: import ./pkgs/top-level/all-packages.nix { pkgs = prev; };
}; };
overlay = final: prev: { overlay = _final: _prev: {
xeals = nixpkgs.lib.composeExtensions self.overlays.pkgs; xeals = nixpkgs.lib.composeExtensions self.overlays.pkgs;
}; };
@ -41,7 +41,7 @@
xPkgs = import ./pkgs/top-level/all-packages.nix { inherit pkgs; }; xPkgs = import ./pkgs/top-level/all-packages.nix { inherit pkgs; };
in in
lib.filterAttrs lib.filterAttrs
(attr: drv: builtins.elem system (drv.meta.platforms or [ ])) (_attr: drv: builtins.elem system (drv.meta.platforms or [ ]))
xPkgs); xPkgs);
apps = forAllSystems (system: apps = forAllSystems (system:

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: { lib, ... }:
with lib; with lib;

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: { config, lib, ... }:
with lib; with lib;

View File

@ -2,7 +2,7 @@
# case where you don't want to add the whole NUR namespace to your # case where you don't want to add the whole NUR namespace to your
# configuration. # configuration.
self: super: _self: super:
let let

View File

@ -1,5 +1,4 @@
{ stdenv { lib
, lib
, fetchFromGitHub , fetchFromGitHub
, python3Packages , python3Packages

View File

@ -1,9 +1,7 @@
{ stdenv { lib
, lib
, fetchFromGitHub , fetchFromGitHub
, rustPlatform , rustPlatform
, cmake
, pkg-config , pkg-config
, alsaLib , alsaLib
, dbus , dbus

View File

@ -1,5 +1,4 @@
{ stdenv { lib
, lib
, fetchFromGitHub , fetchFromGitHub
, buildGoModule , buildGoModule

View File

@ -1,16 +1,12 @@
{ stdenv { stdenv
, lib , lib
, fetchFromGitLab , fetchFromGitLab
, fetchzip
, cereal , cereal
, cmake , cmake
, git
, libGL , libGL
, libX11 , libX11
, libinput , libinput
, libxkbcommon , libxkbcommon
, mesa
, meson , meson
, ninja , ninja
, pixman , pixman

View File

@ -1,5 +1,4 @@
{ stdenv { lib
, lib
, fetchFromGitHub , fetchFromGitHub
, buildGoModule , buildGoModule
, makeWrapper , makeWrapper

View File

@ -2,7 +2,6 @@
, lib , lib
, fetchFromGitHub , fetchFromGitHub
, coreutils
, autoreconfHook , autoreconfHook
}: }:

View File

@ -1,5 +1,4 @@
{ stdenv { lib
, lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
}: }:

View File

@ -1,5 +1,4 @@
{ stdenv { lib
, lib
, fetchFromGitHub , fetchFromGitHub
, python3Packages , python3Packages

View File

@ -1,8 +1,6 @@
{ stdenv { stdenv
, lib , lib
, fetchFromGitHub , fetchFromGitHub
, makeWrapper
, curl , curl
, gnumake , gnumake
, gnutls , gnutls

View File

@ -1,5 +1,4 @@
{ stdenv { lib
, lib
, fetchFromGitHub , fetchFromGitHub
, python3Packages , python3Packages

View File

@ -42,7 +42,7 @@ rec {
pam_gnupg = pkgs.callPackage ../os-specific/linux/pam_gnupg { }; pam_gnupg = pkgs.callPackage ../os-specific/linux/pam_gnupg { };
picom-animations = pkgs.picom.overrideAttrs (oldAttrs: { picom-animations = pkgs.picom.overrideAttrs (_oldAttrs: {
pname = "picom-animations"; pname = "picom-animations";
src = pkgs.fetchFromGitHub { src = pkgs.fetchFromGitHub {
owner = "jonaburg"; owner = "jonaburg";