mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
gnuradio: 3.7.11.0 -> 3.7.11.1
this version includes GCC6 improvements
This commit is contained in:
parent
5d75dbe5e5
commit
1b1c82f4f4
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, writeText, makeWrapper
|
{ stdenv, fetchFromGitHub, writeText, makeWrapper
|
||||||
# Dependencies documented @ https://gnuradio.org/doc/doxygen/build_guide.html
|
# Dependencies documented @ https://gnuradio.org/doc/doxygen/build_guide.html
|
||||||
# => core dependencies
|
# => core dependencies
|
||||||
, cmake, pkgconfig, git, boost, cppunit, fftw
|
, cmake, pkgconfig, git, boost, cppunit, fftw
|
||||||
@ -26,11 +26,14 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gnuradio-${version}";
|
name = "gnuradio-${version}";
|
||||||
version = "3.7.11";
|
version = "3.7.11.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://gnuradio.org/releases/gnuradio/${name}.tar.gz";
|
owner = "gnuradio";
|
||||||
sha256 = "1m2jf8lafr6pr2dlm40nbvr6az8gwjfkzpbs4fxzv3l5hcqvmnc7";
|
repo = "gnuradio";
|
||||||
|
rev = "6d2221196082a4954c249dc6955e33d5832a56f2";
|
||||||
|
sha256 = "1fkrb8cnjbriy2x94lz73q6aqxar1rkvfbafp266ykdpm29b4xgm";
|
||||||
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
Loading…
Reference in New Issue
Block a user