Sync *.nix with nixpkgs changes

This commit is contained in:
dump_stack() 2025-04-21 17:39:34 +00:00
parent 9a410f75d8
commit 921da44d09
Signed by: dump_stack
GPG Key ID: C9905BA72B5E02BB
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ buildGoModule rec {
src = ./.;
vendorSha256 = "sha256-8eU+Mf5dxL/bAMMShXvj8I1Kdd4ysBTWvgYIXwLStPI=";
vendorHash = "sha256-8eU+Mf5dxL/bAMMShXvj8I1Kdd4ysBTWvgYIXwLStPI=";
postFixup = ''
wrapProgram $out/bin/appvm \

View File

@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs; mkShell {
buildInputs = [ go gocode virt-viewer virtmanager ];
buildInputs = [ go virt-viewer virtmanager ];
}