vhost-device/flake.nix
Davíð Steinn Geirsson 323a66d430 nix: add flake with vhost-device-sound package
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 20:49:42 +00:00

22 lines
524 B
Nix

{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs =
{ nixpkgs, ... }:
let
forAllSystems =
f:
nixpkgs.lib.genAttrs [
"x86_64-linux"
"aarch64-linux"
] (system: f nixpkgs.legacyPackages.${system});
in
{
packages = forAllSystems (pkgs: {
vhost-device-sound = pkgs.callPackage ./packages/vhost-device-sound.nix { };
default = pkgs.callPackage ./packages/vhost-device-sound.nix { };
});
};
}