añade soporte para el proyecto de dsp

This commit is contained in:
Fabián Montero 2022-11-05 11:22:52 -06:00
parent 1e6cd9ee3d
commit f847fb5138
3 changed files with 9 additions and 22 deletions

View file

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

View file

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

View file

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