5bd4d4ac45
Add versions at different commit hashes for different GR versions.
85 lines
1.9 KiB
Nix
85 lines
1.9 KiB
Nix
{ lib
|
|
, mkDerivation
|
|
, fetchFromGitHub
|
|
, gnuradio
|
|
, cmake
|
|
, pkg-config
|
|
, boost
|
|
, log4cpp
|
|
, python
|
|
, swig
|
|
, mpir
|
|
, gmp
|
|
, doxygen
|
|
, libpcap
|
|
, icu
|
|
, thrift
|
|
}:
|
|
|
|
let
|
|
# Each GR major version requires us to pull a specific git revision of the repository
|
|
version = {
|
|
"3.7" = {
|
|
# Last git revision from the `maint-3.7` branch:
|
|
# https://github.com/ghostop14/gr-grnet/tree/maint-3.7
|
|
name = "unstable-2019-08-06";
|
|
gitHash = "beb1cd75d006a982c0a9536e923800c5a0575451";
|
|
};
|
|
"3.8" = {
|
|
# Last git revision from the `maint-3.8` branch:
|
|
# https://github.com/ghostop14/gr-grnet/tree/maint-3.8
|
|
name = "unstable-2020-11-20";
|
|
gitHash = "b02016043b67a15f27134a4f0b0d43f5d1b9ed6d";
|
|
};
|
|
"3.9" = {
|
|
# This revision is taken from the `master` branch.
|
|
name = "unstable-2020-12-30";
|
|
gitHash = "e6dfd140cfda715de9bcef4c1116fcacfeb0c606";
|
|
};
|
|
}.${gnuradio.versionAttr.major};
|
|
src = fetchFromGitHub {
|
|
owner = "ghostop14";
|
|
repo = "gr-grnet";
|
|
rev = "${version.gitHash}";
|
|
sha256 = {
|
|
"3.7" = "LLQ0Jf0Oapecu9gj4IgxOdK7O/OSbHnwNk000GlODxk=";
|
|
"3.8" = "vO8l8nV1/yEQf7pKqBbzIg4KkyCyWu+OkKgISyI3PaQ=";
|
|
"3.9" = "NsL7HCOQmGyexzpH2qbzv8Bq4bsfiDTNEUi96QDOA/g=";
|
|
}.${gnuradio.versionAttr.major};
|
|
};
|
|
in
|
|
mkDerivation {
|
|
pname = "gr-grnet";
|
|
version = version.name;
|
|
inherit src;
|
|
|
|
buildInputs = [
|
|
boost
|
|
log4cpp
|
|
doxygen
|
|
mpir
|
|
gmp
|
|
libpcap
|
|
icu
|
|
] ++ (if lib.versionAtLeast gnuradio.versionAttr.major "3.9" then with python.pkgs; [
|
|
pybind11
|
|
numpy
|
|
] else [
|
|
swig
|
|
thrift
|
|
python.pkgs.thrift
|
|
]);
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "GNURadio TCP/UDP source and sink blocks rewritten in C++/Boost";
|
|
homepage = "https://github.com/ghostop14/gr-grnet";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ chuangzhu ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|