diff options
| author | Bjørn Forsman <bjorn.forsman@gmail.com> | 2021-06-20 16:31:31 +0200 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2021-06-20 16:55:06 +0000 |
| commit | ad213d953944cce2e6fee001ab36dd6a0f805fc2 (patch) | |
| tree | e79e57b6c0f0f182a3a0117112f83f9e0224d3db | |
| parent | Merge pull request #127563 from dotlambda/certifi-disable-21.05 (diff) | |
| download | nixpkgs-ad213d953944cce2e6fee001ab36dd6a0f805fc2.tar.gz | |
gnuradio.pkgs.ais: 2015-12-20 -> 2020-08-13origin/backport-127568-to-release-21.05
This adds support for GR3.8.
(cherry picked from commit 3e8fb944c24f1e6761e94a66aa7d347053375ea3)
| -rw-r--r-- | pkgs/development/gnuradio-modules/ais/default.nix | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/pkgs/development/gnuradio-modules/ais/default.nix b/pkgs/development/gnuradio-modules/ais/default.nix index 5ff4ffd75653..638210f8412f 100644 --- a/pkgs/development/gnuradio-modules/ais/default.nix +++ b/pkgs/development/gnuradio-modules/ais/default.nix @@ -8,18 +8,22 @@ , cppunit , log4cpp , osmosdr +, gmp +, mpir +, fftwFloat +, icu }: mkDerivation rec { pname = "gr-ais"; - version = "2015-12-20"; + version = "2020-08-13"; src = fetchFromGitHub { owner = "bistromath"; repo = "gr-ais"; - rev = "cdc1f52745853f9c739c718251830eb69704b26e"; - sha256 = "1vl3kk8xr2mh5lf31zdld7yzmwywqffffah8iblxdzblgsdwxfl6"; + rev = "2162103226f3dae43c8c2ab23b79483b84346665"; + sha256 = "1vackka34722d8pcspfwj0j6gc9ic7dqq64sgkrpjm94sh3bmb0b"; }; - disabledForGRafter = "3.8"; + disabledForGRafter = "3.9"; nativeBuildInputs = [ cmake @@ -32,6 +36,10 @@ mkDerivation rec { osmosdr boost log4cpp + gmp + mpir + fftwFloat + icu ]; meta = with lib; { |
