f7e390e6d4
Related: -9fc5e7e473
-593e11fd94
-508ae42a0f
Since the last time I ran this script, the Repology API changed, so I had to adapt the script used in the previous PR. The new API should be more robust, so overall this is a positive (no more grepping the error messages for our relevant data but just a nice json structure). Here's the new script I used: ```sh curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \ | sort | uniq | tee script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ``` I will also add this script to `maintainers/scripts`.
38 lines
804 B
Nix
38 lines
804 B
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig, libusb1, fftwSinglePrec }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hackrf";
|
|
version = "2018.01.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mossmann";
|
|
repo = "hackrf";
|
|
rev = "v${version}";
|
|
sha256 = "0idh983xh6gndk9kdgx5nzz76x3mxb42b02c5xvdqahadsfx3b9w";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkgconfig
|
|
];
|
|
|
|
buildInputs = [
|
|
libusb1
|
|
fftwSinglePrec
|
|
];
|
|
|
|
cmakeFlags = [ "-DUDEV_RULES_GROUP=plugdev" "-DUDEV_RULES_PATH=lib/udev/rules.d" ];
|
|
|
|
preConfigure = ''
|
|
cd host
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An open source SDR platform";
|
|
homepage = "https://greatscottgadgets.com/hackrf/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ sjmackenzie ];
|
|
};
|
|
}
|