Skip to content

Commit

Permalink
remove raze
Browse files Browse the repository at this point in the history
  • Loading branch information
bandithedoge committed Dec 27, 2024
1 parent 0ce775e commit ee361a2
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 193 deletions.
3 changes: 3 additions & 0 deletions pkgs/_upstreamed.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
raze = ["raze"];
}
17 changes: 12 additions & 5 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

callPackages' = pkg: pkgs.callPackages pkg (callPackageArgs pkg);

concat = pkgs.lib.concatStringsSep ".";

packages = {
actuate = callPackage' ./actuate;
aida-x = callPackage' ./aida-x;
Expand Down Expand Up @@ -72,7 +74,6 @@
propertree = callPackage' ./propertree;
protrekkr = callPackage' ./protrekkr;
pythonPackages = callPackages' ./pythonPackages;
raze = callPackage' ./raze;
roomreverb = callPackage' ./roomreverb;
satty = callPackage' ./satty;
schrammel-ojd = callPackage' ./schrammel-ojd;
Expand Down Expand Up @@ -104,8 +105,14 @@
in
packages
// (pkgs.lib.mapAttrsRecursive
(old: new: let
concat = pkgs.lib.concatStringsSep ".";
in
pkgs.lib.warn "${concat old} has been renamed to ${concat new}" (pkgs.lib.attrByPath new null packages))
(old: new:
pkgs.lib.warn
"${concat old} has been renamed to ${concat new}"
(pkgs.lib.attrByPath new null packages))
(import ./_renamed.nix))
// (pkgs.lib.mapAttrsRecursive
(old: new:
pkgs.lib.warn
"${concat old} has been upstreamed to nixpkgs as ${concat (["pkgs"] ++ new)}"
(pkgs.lib.attrByPath new null pkgs))
(import ./_upstreamed.nix))
43 changes: 0 additions & 43 deletions pkgs/raze/_sources/generated.json

This file was deleted.

33 changes: 0 additions & 33 deletions pkgs/raze/_sources/generated.nix

This file was deleted.

105 changes: 0 additions & 105 deletions pkgs/raze/default.nix

This file was deleted.

7 changes: 0 additions & 7 deletions pkgs/raze/nvfetcher.toml

This file was deleted.

0 comments on commit ee361a2

Please sign in to comment.