d7d44eb808
Before the fix: ```sh $ grep Version result/lib/pkgconfig/librtlsdr.pc Version: v0.8.x-xxx-xunknown ``` It causes problem while building projects that use librtlsdr: ```sh -- Checking for module 'librtlsdr>=0.5.4' -- Requested 'librtlsdr >= 0.5.4' but version of RTL-SDR Library is v0.8.x-xxx-xunknown ``` After the fix: ```sh $ grep Version result/lib/pkgconfig/librtlsdr.pc Version: 0.8.0 ```
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, libusb1
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rtl-sdr";
|
|
version = "0.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "librtlsdr";
|
|
repo = "librtlsdr";
|
|
rev = "v${version}";
|
|
hash = "sha256-s03h+3EfC5c7yRYBM6aCRWtmstwRJWuBywuyVt+k/bk=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace '/etc/udev/rules.d' "$out/etc/udev/rules.d" \
|
|
--replace "VERSION_INFO_PATCH_VERSION git" "VERSION_INFO_PATCH_VERSION ${lib.versions.patch version}"
|
|
|
|
substituteInPlace rtl-sdr.rules \
|
|
--replace 'MODE:="0666"' 'ENV{ID_SOFTWARE_RADIO}="1", MODE="0660", GROUP="plugdev"'
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
|
|
|
propagatedBuildInputs = [ libusb1 ];
|
|
|
|
cmakeFlags = lib.optionals stdenv.isLinux [
|
|
"-DINSTALL_UDEV_RULES=ON"
|
|
"-DWITH_RPC=ON"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Turns your Realtek RTL2832 based DVB dongle into a SDR receiver";
|
|
homepage = "https://github.com/librtlsdr/librtlsdr";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|