diff --git a/home/path.nix b/home/path.nix index 736a56c..f86eae6 100644 --- a/home/path.nix +++ b/home/path.nix @@ -58,5 +58,11 @@ with lib; xclip xournalpp zoom-us + libsForQt5.full + libsForQt5.qt5.qtbase + libsForQt5.qt5.qttools + gnumake + libsndfile + jack2 ]; } diff --git a/jack/flake.lock b/jack/flake.lock new file mode 100644 index 0000000..0e85452 --- /dev/null +++ b/jack/flake.lock @@ -0,0 +1,24 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1664107978, + "narHash": "sha256-31I9XnIjXkUa62BM1Zr/ylKMf9eVO5PtoX2mGpmB7/U=", + "path": "/nix/store/nm2slrv3chgbfdd76h6fw1nq1703fpxg-source", + "rev": "72783a2d0dbbf030bff1537873dd5b85b3fb332f", + "type": "path" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "root": { + "inputs": { + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/jack/flake.nix b/jack/flake.nix new file mode 100644 index 0000000..97d1bc0 --- /dev/null +++ b/jack/flake.nix @@ -0,0 +1,13 @@ +{ + outputs = { self, nixpkgs }: let + system = "x86_64-linux"; + pkgs = import nixpkgs { inherit system; config.allowUnfree = true; }; + in { + devShells."${system}".default = pkgs.mkShell { + buildInputs = with pkgs; [ + jack2 + ]; + #nativeBuildInputs = with pkgs; []; + }; + }; +} diff --git a/jack/jack.nix b/jack/jack.nix new file mode 100644 index 0000000..9ea0d93 --- /dev/null +++ b/jack/jack.nix @@ -0,0 +1,14 @@ +{ + outputs = { self, nixpkgs }: let + system = "x86_64-linux"; + pkgs = import nixpkgs { inherit system; config.allowUnfree = true; }; + in { + devShells."${system}".default = pkgs.mkShell { + buildInputs = with pkgs; [ + jack2 + libsndfile + ]; + #nativeBuildInputs = with pkgs; []; + }; + }; +}