Compare commits

...

3 Commits

Author SHA1 Message Date
ef856f9e1f
Fix shell.nix 2025-04-21 17:49:02 +00:00
902ce18661
Remove macOS workflow 2025-04-21 17:48:17 +00:00
2e87dbf424
Keep upstream virt-viewer patches 2025-04-21 17:47:54 +00:00
3 changed files with 3 additions and 19 deletions

View File

@ -1,16 +0,0 @@
name: macOS
on: [push]
jobs:
build:
name: Build
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Fetch dependencies
run: go get -d ./...
- name: Build
run: go build

View File

@ -1,7 +1,7 @@
{ pkgs ? import <nixpkgs> {}, ... }:
let
virt-manager-without-menu = pkgs.virt-viewer.overrideAttrs(x: {
patches = [
virt-manager-without-menu = pkgs.virt-viewer.overrideAttrs (oldAttrs: {
patches = oldAttrs.patches ++ [
./patches/0001-Remove-menu-bar.patch
./patches/0002-Do-not-grab-keyboard-mouse.patch
./patches/0003-Use-name-of-appvm-applications-as-a-title.patch

View File

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