Compare commits

..

5 commits

Author SHA1 Message Date
ed45ad9b6f project: add README 2021-10-08 14:44:21 +02:00
dbc10b5066 git: add ignore file 2021-10-08 14:42:46 +02:00
49658de1d8 nix: add direnv integration 2021-10-08 14:42:46 +02:00
7c6a5e58cc project: add LICENSE 2021-10-08 14:42:46 +02:00
a968e4f761 nix: add flake 2021-10-08 14:42:46 +02:00

View file

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