summaryrefslogtreecommitdiffstats
path: root/default.nix
AgeCommit message (Collapse)Author
2020-05-27Remove trailing whitespaceUwe Klotz
2019-09-23Properly wrap LV2 searchpath on nix buildsDaniel Poelzleithner
For LV2 plugins to be visible, they need to be in the LV2 search path. This patch allows a list of lv2 plugins to be passed as well as a flag to enable a default list of plugins. To enable the default list, you can build with: nix-build --arg defaultLv2Plugins true
2019-06-25default.nix: Add script to run Mixxx inside gdbhaslersn
2019-06-22default.nix: Add git-clang-format as recommended in the Wikihaslersn
https://www.mixxx.org/wiki/doku.php/coding_guidelines#command_line
2019-06-16default.nix: Use scripts instead of bash functionshaslersn
This way, when using another shell (like `zsh` or `fish`) inside nix-shell, one can still use the `build` and `run` commands.
2019-06-05Move version into own file and use version file in default.nixDaniel Poelzleithner
Due the nature of nix, using "git describe" will always waste a copy of the source folder and is quite slow. Since nix string functions are very limited and extracting the version is difficult, the best compromise was to move the version into a small file as a single source of truth.
2019-06-05Add default.nix for building mixxx packages and entering development shellDaniel Poelzleithner