diff options
| author | Bjørn Forsman <bjorn.forsman@gmail.com> | 2024-03-25 16:53:37 +0100 |
|---|---|---|
| committer | Bjørn Forsman <bjorn.forsman@gmail.com> | 2024-03-26 23:56:35 +0100 |
| commit | 59daf9b0b6a8c577cad7c0679380dda63485f1ad (patch) | |
| tree | 3538ac7b6f05530ba360e6df5177e6fe02b7fbeb /pkgs/development/gnuradio-modules | |
| parent | installer/nixos-generate-config: correctly detect bcache (diff) | |
| download | nixpkgs-59daf9b0b6a8c577cad7c0679380dda63485f1ad.tar.gz | |
gnuradioPackages.osmosdr: fix source URL
The current URL doesn't work anymore:
$ nix-build -A gnuradioPackages.osmosdr.src --check
checking outputs of '/nix/store/3jmqk57y5214iadfi6ivbgfd1rr9fyib-gr-osmosdr.drv'...
exporting git://git.osmocom.org/gr-osmosdr (rev v0.2.4) into /nix/store/m1qa9ipmdf4xrc6gl1r0zd0c5r0ns7bk-gr-osmosdr
Initialized empty Git repository in /nix/store/m1qa9ipmdf4xrc6gl1r0zd0c5r0ns7bk-gr-osmosdr/.git/
fatal: unable to connect to git.osmocom.org:
git.osmocom.org[0: 78.46.96.155]: errno=Connection refused
git.osmocom.org[1: 2a01:4f8:120:8470::2]: errno=Network is unreachable
Fixes https://github.com/NixOS/nixpkgs/issues/298876.
Diffstat (limited to 'pkgs/development/gnuradio-modules')
| -rw-r--r-- | pkgs/development/gnuradio-modules/osmosdr/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/gnuradio-modules/osmosdr/default.nix b/pkgs/development/gnuradio-modules/osmosdr/default.nix index 8e46ac561493..053d0a8e99f1 100644 --- a/pkgs/development/gnuradio-modules/osmosdr/default.nix +++ b/pkgs/development/gnuradio-modules/osmosdr/default.nix @@ -33,7 +33,7 @@ let "3.10" = "0.2.4"; }.${gnuradio.versionAttr.major}; src = fetchgit { - url = "git://git.osmocom.org/gr-osmosdr"; + url = "https://gitea.osmocom.org/sdr/gr-osmosdr"; rev = "v${version}"; sha256 = { "3.7" = "0bf9bnc1c3c4yqqqgmg3nhygj6rcfmyk6pybi27f7461d2cw1drv"; |
