incus 0.3.0 -> 0.4 https://repology.org/project/incus/versions attrpath: incus Checking auto update branch... No auto update branch exists Old version 0.3.0" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub , acl , cowsql , hwdata , libcap , lxc , pkg-config , sqlite , udev , installShellFiles , nix-update-script , nixosTests }: buildGoModule rec { pname = "incus-unwrapped"; version = "0.4.0"; src = fetchFromGitHub { owner = "lxc"; repo = "incus"; rev = "refs/tags/v${version}"; hash = "sha256-crWepf5j3Gd1lhya2DGIh/to7l+AnjKJPR+qUd9WOzw="; }; vendorHash = "sha256-YfUvkN1qUS3FFKb1wysg40WcJA8fT9SGDChSdT+xnkc="; postPatch = '' substituteInPlace internal/usbid/load.go \ --replace "/usr/share/misc/usb.ids" "${hwdata}/share/hwdata/usb.ids" ''; excludedPackages = [ "cmd/incus-agent" "cmd/incus-migrate" "cmd/lxd-to-incus" "test/mini-oidc" ]; nativeBuildInputs = [ installShellFiles pkg-config ]; buildInputs = [ lxc acl libcap cowsql.dev sqlite udev.dev ]; ldflags = [ "-s" "-w" ]; tags = [ "libsqlite3" ]; # required for go-cowsql. CGO_LDFLAGS_ALLOW = "(-Wl,-wrap,pthread_create)|(-Wl,-z,now)"; postBuild = '' make incus-agent incus-migrate ''; preCheck = let skippedTests = [ "TestValidateConfig" "TestConvertNetworkConfig" "TestConvertStorageConfig" "TestSnapshotCommon" "TestContainerTestSuite" ]; in '' # Disable tests requiring local operations buildFlagsArray+=("-run" "[^(${builtins.concatStringsSep "|" skippedTests})]") ''; postInstall = '' installShellCompletion --bash --name incus ./scripts/bash/incus ''; passthru = { tests.incus = nixosTests.incus; updateScript = nix-update-script { extraArgs = [ "-vr" "v\(.*\)" ]; }; }; meta = { description = "Powerful system container and virtual machine manager"; homepage = "https://linuxcontainers.org/incus"; changelog = "https://github.com/lxc/incus/releases/tag/incus-${version}"; license = lib.licenses.asl20; maintainers = lib.teams.lxc.members; platforms = lib.platforms.linux; }; }