añade soporte para el proyecto de dsp
This commit is contained in:
parent
1e6cd9ee3d
commit
f847fb5138
|
@ -40,7 +40,6 @@ with lib;
|
|||
pdfarranger
|
||||
polymc
|
||||
protonup
|
||||
qtcreator
|
||||
rar
|
||||
runelite
|
||||
rust-analyzer
|
||||
|
@ -58,11 +57,5 @@ with lib;
|
|||
xclip
|
||||
xournalpp
|
||||
zoom-us
|
||||
libsForQt5.full
|
||||
libsForQt5.qt5.qtbase
|
||||
libsForQt5.qt5.qttools
|
||||
gnumake
|
||||
libsndfile
|
||||
jack2
|
||||
];
|
||||
}
|
||||
|
|
|
@ -6,8 +6,16 @@
|
|||
devShells."${system}".default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
jack2
|
||||
qtcreator
|
||||
qt5.full
|
||||
];
|
||||
#nativeBuildInputs = with pkgs; [];
|
||||
};
|
||||
|
||||
pkgs."${system}".default = pkgs.stdenv.mkDerivation {
|
||||
pname = "proyecto";
|
||||
version = "0.1";
|
||||
buildInputs = with pkgs; [ qt5.full jack2 libsoundifle qt5.full ];
|
||||
nativeBuildInputs = wth pkgs; [ wrapQtAppsHook ]
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
{
|
||||
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; [];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue