From 6c121741a36bd0f9515a85488ec6adb5a3bd92ba Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 1 Nov 2022 11:52:24 -0400 Subject: [PATCH] refactor(pkgs): remove local frei package --- pkgs/_sources/generated.json | 27 ++++----------------------- pkgs/_sources/generated.nix | 17 +++-------------- pkgs/default.nix | 2 -- pkgs/frei.nix | 7 ------- pkgs/sources.toml | 4 ---- 5 files changed, 7 insertions(+), 50 deletions(-) delete mode 100644 pkgs/frei.nix diff --git a/pkgs/_sources/generated.json b/pkgs/_sources/generated.json index 8b247a8..88ee815 100644 --- a/pkgs/_sources/generated.json +++ b/pkgs/_sources/generated.json @@ -1,23 +1,4 @@ { - "frei": { - "cargoLocks": null, - "extract": null, - "name": "frei", - "passthru": null, - "pinned": false, - "src": { - "deepClone": false, - "fetchSubmodules": false, - "leaveDotGit": false, - "name": null, - "owner": "alexcoder04", - "repo": "frei", - "rev": "v0.1.0", - "sha256": "sha256-9CV6B7fRHXl73uI2JRv3RiaFczLHHBOd7/8UoCAwK6w=", - "type": "github" - }, - "version": "v0.1.0" - }, "qtile": { "cargoLocks": null, "extract": null, @@ -31,10 +12,10 @@ "name": null, "owner": "qtile", "repo": "qtile", - "rev": "37d5d8acfcb0ed1642ad6f032b1a57a0938814a9", - "sha256": "sha256-/stKfUnk2UwA7+XhkgxesVNG5ovAhyC3ktfBr/oxE0k=", + "rev": "0b0280190efc09029c1e3f9fd369ea7206782623", + "sha256": "sha256-aICD9OMlInWwRUMi1oy52FiKGxU25FGQh4KKcVAQ++A=", "type": "github" }, - "version": "37d5d8acfcb0ed1642ad6f032b1a57a0938814a9" + "version": "0b0280190efc09029c1e3f9fd369ea7206782623" } -} +} \ No newline at end of file diff --git a/pkgs/_sources/generated.nix b/pkgs/_sources/generated.nix index f3627d3..57cff9f 100644 --- a/pkgs/_sources/generated.nix +++ b/pkgs/_sources/generated.nix @@ -1,26 +1,15 @@ # This file was generated by nvfetcher, please do not modify it manually. { fetchgit, fetchurl, fetchFromGitHub }: { - frei = { - pname = "frei"; - version = "v0.1.0"; - src = fetchFromGitHub ({ - owner = "alexcoder04"; - repo = "frei"; - rev = "v0.1.0"; - fetchSubmodules = false; - sha256 = "sha256-9CV6B7fRHXl73uI2JRv3RiaFczLHHBOd7/8UoCAwK6w="; - }); - }; qtile = { pname = "qtile"; - version = "37d5d8acfcb0ed1642ad6f032b1a57a0938814a9"; + version = "0b0280190efc09029c1e3f9fd369ea7206782623"; src = fetchFromGitHub ({ owner = "qtile"; repo = "qtile"; - rev = "37d5d8acfcb0ed1642ad6f032b1a57a0938814a9"; + rev = "0b0280190efc09029c1e3f9fd369ea7206782623"; fetchSubmodules = false; - sha256 = "sha256-/stKfUnk2UwA7+XhkgxesVNG5ovAhyC3ktfBr/oxE0k="; + sha256 = "sha256-aICD9OMlInWwRUMi1oy52FiKGxU25FGQh4KKcVAQ++A="; }); }; } diff --git a/pkgs/default.nix b/pkgs/default.nix index 1782be5..c63d1ab 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -5,8 +5,6 @@ final: prev: { olympus = final.callPackage ./olympus.nix { }; - frei = final.callPackage ./frei.nix { source = final.sources.frei; }; - nix-modrinth-prefetch = final.callPackage ./nix-modrinth-prefetch.nix { }; qtile-unstable = final.callPackage ./qtile.nix { source = final.sources.qtile; }; diff --git a/pkgs/frei.nix b/pkgs/frei.nix deleted file mode 100644 index 7bb133e..0000000 --- a/pkgs/frei.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ buildGo118Module -, source -}: -buildGo118Module rec { - inherit (source) pname version src; - vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo="; -} diff --git a/pkgs/sources.toml b/pkgs/sources.toml index 7fd076b..2023298 100644 --- a/pkgs/sources.toml +++ b/pkgs/sources.toml @@ -1,8 +1,4 @@ # nvfetcher toml -[frei] -src.github = "alexcoder04/frei" -fetch.github = "alexcoder04/frei" - [qtile] src.git = "https://github.com/qtile/qtile.git" fetch.github = "qtile/qtile"