refactor(pkgs): remove local frei package

This commit is contained in:
Infinidoge 2022-11-01 11:52:24 -04:00
parent 06a281beac
commit 6c121741a3
5 changed files with 7 additions and 50 deletions

View file

@ -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"
}
}
}

View file

@ -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=";
});
};
}

View file

@ -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; };

View file

@ -1,7 +0,0 @@
{ buildGo118Module
, source
}:
buildGo118Module rec {
inherit (source) pname version src;
vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
}

View file

@ -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"