From f706733f0b27f1c32e04579b60a3e595b1113800 Mon Sep 17 00:00:00 2001 From: Hendrik Sokolowski Date: Tue, 12 Dec 2023 03:30:00 +0100 Subject: [PATCH] update overrides --- overlays/blesh.nix | 10 ---------- overlays/default.nix | 3 --- overlays/invidious.nix | 12 ------------ overlays/tang.nix | 13 ------------- 4 files changed, 38 deletions(-) delete mode 100644 overlays/blesh.nix delete mode 100644 overlays/invidious.nix delete mode 100644 overlays/tang.nix diff --git a/overlays/blesh.nix b/overlays/blesh.nix deleted file mode 100644 index ee25e015..00000000 --- a/overlays/blesh.nix +++ /dev/null @@ -1,10 +0,0 @@ -final: prev: { - blesh = prev.blesh.overrideAttrs (oldAttrs: rec { - #inherit (prev.sources.blesh-nvfetcher) version src; - version = "0.4.0-devel3"; - src = prev.fetchzip { - url = "https://github.com/akinomyoga/ble.sh/releases/download/v${version}/ble-${version}.tar.xz"; - sha256 = "sha256-kGLp8RaInYSrJEi3h5kWEOMAbZV/gEPFUjOLgBuMhCI="; - }; - }); -} diff --git a/overlays/default.nix b/overlays/default.nix index 2beb26b5..6d06ca97 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -1,8 +1,5 @@ [ (import ../pkgs) - (import ./blesh.nix) - (import ./invidious.nix) (import ./manix.nix) (import ./neovim-plugins.nix) - (import ./tang.nix) ] diff --git a/overlays/invidious.nix b/overlays/invidious.nix deleted file mode 100644 index 2194206f..00000000 --- a/overlays/invidious.nix +++ /dev/null @@ -1,12 +0,0 @@ -final: prev: { - invidious = prev.invidious.overrideAttrs (oldAttrs: rec { - version = "unstable-2023-02-22"; - src = prev.fetchFromGitHub { - owner = "iv-org"; - repo = "invidious"; - rev = "0995e0447c2b54d80b55231830b847d41c19b404"; - hash = "sha256-hXF836jxMriMJ/qcBJIF5cRvQG719PStKqTZQcIRqlw="; - fetchSubmodules = true; - }; - }); -} diff --git a/overlays/tang.nix b/overlays/tang.nix deleted file mode 100644 index 9a6802d9..00000000 --- a/overlays/tang.nix +++ /dev/null @@ -1,13 +0,0 @@ -final: prev: { - tang = prev.tang.overrideAttrs (oldAttrs: rec { - pname = "tang"; - version = "11"; - - src = prev.fetchFromGitHub { - owner = "latchset"; - repo = pname; - rev = "v${version}"; - sha256 = ""; - }; - }); -}