nix: use 'qt5.mkDerivation'

This commit is contained in:
Bruno BELANYI 2021-10-08 14:55:14 +02:00
parent ec07fe4fdf
commit e852239a45
1 changed files with 1 additions and 9 deletions

View File

@ -85,20 +85,12 @@
};
}) // {
overlay = final: prev: {
dragger = with final; stdenv.mkDerivation {
dragger = with final; qt5.mkDerivation {
pname = "dragger";
version = "0.0.0";
src = self;
buildInputs = [
libsForQt5.qt5.qtbase
];
nativeBuildInputs = [
libsForQt5.qt5.wrapQtAppsHook
];
configurePhase = ''
qmake
'';