maybe nix fixed

This commit is contained in:
nekohepott 2026-06-17 04:16:26 +03:00
parent 7d2f72e32d
commit 97496d73ee
No known key found for this signature in database
2 changed files with 9 additions and 3 deletions

View File

@ -21,7 +21,7 @@ buildGoApplication {
modules = ./gomod2nix.toml;
nativeBuildInputs = [ pkgs.makeWrapper ];
buildInputs = [ pkgs.chafa ];
buildInputs = [ "pkgs.chafa" "pkgs.pciutils" ];
postInstall = ''
mkdir -p $out/share/gogofetch/logos

View File

@ -15,12 +15,18 @@
}:
let
goEnv = mkGoEnv { pwd = ./.; };
goApp = pkgs.buildGoModule {
pname = "goGoFetch";
version = "1.0";
src = ./.;
vendorHash = null;
};
in
pkgs.mkShell {
packages = [
goEnv
goApp
gomod2nix
pkgs.chafa
pkgs.pciutils
];
}