diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..3ace795 --- /dev/null +++ b/flake.lock @@ -0,0 +1,27 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1674407282, + "narHash": "sha256-2qwc8mrPINSFdWffPK+ji6nQ9aGnnZyHSItVcYDZDlk=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "ab1254087f4cdf4af74b552d7fc95175d9bdbb49", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-22.11", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..9fcdc19 --- /dev/null +++ b/flake.nix @@ -0,0 +1,15 @@ +{ + description = "obs-scene-switcher packaged"; + + inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-22.11; + + outputs = { nixpkgs, ... }: + let + pkgs = import nixpkgs { + system = "x86_64-linux"; + }; + in + { + obs-scene-switcher = pkgs.qt6Packages.callPackage ./obs-scene-switcher.nix { }; + }; +}