jack: añade soporte para jack2

This commit is contained in:
Fabián Montero 2022-11-04 00:38:53 -06:00
parent 1afa9e9a6a
commit d72fa6a09f
4 changed files with 57 additions and 0 deletions

View file

@ -58,5 +58,11 @@ with lib;
xclip xclip
xournalpp xournalpp
zoom-us zoom-us
libsForQt5.full
libsForQt5.qt5.qtbase
libsForQt5.qt5.qttools
gnumake
libsndfile
jack2
]; ];
} }

24
jack/flake.lock Normal file
View file

@ -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
}

13
jack/flake.nix Normal file
View file

@ -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; [];
};
};
}

14
jack/jack.nix Normal file
View file

@ -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; [];
};
};
}