libbladeRF: fix udev rule location in $out

Shell variables in cmakeFlags are not expanded, so the rules instead ended up
in `$out/'$out'/etc/udev/rules.d`.
This commit is contained in:
Benno Fünfstück 2017-03-03 12:03:50 +01:00
parent 0f9517eb9e
commit 410bba8f95

View File

@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Debug"
"-DUDEV_RULES_PATH=$out/etc/udev/rules.d"
"-DUDEV_RULES_PATH=etc/udev/rules.d"
"-DINSTALL_UDEV_RULES=ON"
"-DBUILD_DOCUMENTATION=ON"
];