cleaning up

This commit is contained in:
nekohepott 2026-06-17 04:16:27 +03:00
parent 940ee97d1a
commit 4c9203c03a
No known key found for this signature in database
5 changed files with 4 additions and 20 deletions

View File

@ -1,16 +0,0 @@
pkgbase = gogofetch-git
pkgdesc = fetch made with C++ rewritten to go for no reason
pkgver = r14.ff1fcf9
pkgrel = 1
url = git+https://codeberg.org/nekohepott/goGoFetch.git
arch = x86_64
license = MIT
makedepends = git
makedepends = go
depends = glibc
provides = gogofetch
conflicts = gogofetch
source = git+https://codeberg.org/nekohepott/goGoFetch.git
sha256sums = SKIP
pkgname = gogofetch-git

View File

@ -44,10 +44,10 @@
checks = {
inherit go-lint;
};
packages.default = callPackage ./. {
packages.default = callPackage ./nix/. {
inherit (gomod2nix.legacyPackages.${system}) buildGoApplication;
};
devShells.default = callPackage ./shell.nix {
devShells.default = callPackage ./nix/shell.nix {
inherit (gomod2nix.legacyPackages.${system}) mkGoEnv gomod2nix;
};
}

View File

@ -17,7 +17,7 @@ buildGoApplication {
pname = "gogofetch";
version = "1.0";
pwd = ./.;
src = ./.;
src = ../.;
subPackages = [ "src" ];
modules = ./gomod2nix.toml;

View File

@ -18,7 +18,7 @@ let
goApp = pkgs.buildGoModule {
pname = "goGoFetch";
version = "1.0";
src = ./.;
src = ../.;
subPackages = [ "src" ];
vendorHash = null;
};