about summary refs log tree commit diff
path: root/users/multi/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'users/multi/pkgs')
-rw-r--r--users/multi/pkgs/.skip-subtree0
-rw-r--r--users/multi/pkgs/default.nix13
-rw-r--r--users/multi/pkgs/htop/default.nix19
3 files changed, 0 insertions, 32 deletions
diff --git a/users/multi/pkgs/.skip-subtree b/users/multi/pkgs/.skip-subtree
deleted file mode 100644
index e69de29bb2..0000000000
--- a/users/multi/pkgs/.skip-subtree
+++ /dev/null
diff --git a/users/multi/pkgs/default.nix b/users/multi/pkgs/default.nix
deleted file mode 100644
index ee30a10691..0000000000
--- a/users/multi/pkgs/default.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ depot, pkgs, ... }:
-
-let 
-  nixpkgs = import pkgs.nixpkgsSrc {};
-  localpkg = path: import path { pkgs = nixpkgs; };
-
-  packages = {
-    htop = localpkg ./htop;
-  };
-in
-  packages // {
-    meta.targets = builtins.attrNames packages;
-  }
diff --git a/users/multi/pkgs/htop/default.nix b/users/multi/pkgs/htop/default.nix
deleted file mode 100644
index f023410bd2..0000000000
--- a/users/multi/pkgs/htop/default.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ pkgs, ... }:
-
-let
-  newVer = "3.0.2";
-
-  newSrc = pkgs.fetchFromGitHub {
-    owner = "htop-dev";
-    repo = "htop";
-    rev = "59ef15b2ad6037f40d7fe4207b2b59dd11b14b8b";
-    sha256 = "0sirwfvqwwq2x2k25vd4k4cf9d5qv17yjizidxq4y5xfh2v0djmd";
-  };
-in
-  with pkgs; htop.overrideAttrs
-    ({ nativeBuildInputs ? [], ... }:
-      {
-        nativeBuildInputs = nativeBuildInputs ++ [ autoreconfHook ];
-        src = newSrc;
-        version = newVer;
-      })