tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
limesuite: 22.09.1 -> 23.10.0
Markus Kowalewski
2 years ago
f522936c
5438b830
+2
-13
1 changed file
expand all
collapse all
unified
split
pkgs
applications
radio
limesuite
default.nix
+2
-13
pkgs/applications/radio/limesuite/default.nix
···
1
{ lib, stdenv, fetchFromGitHub, cmake
2
-
, fetchpatch
3
, sqlite, wxGTK32, libusb1, soapysdr
4
, mesa_glu, libX11, gnuplot, fltk
5
, GLUT
···
8
9
stdenv.mkDerivation rec {
10
pname = "limesuite";
11
-
version = "22.09.1";
12
13
src = fetchFromGitHub {
14
owner = "myriadrf";
15
repo = "LimeSuite";
16
rev = "v${version}";
17
-
sha256 = "sha256-t3v2lhPZ1L/HRRBwA3k1KfIpih6R4TUmBWaIm8sVGdY=";
18
};
19
-
20
-
patches = [
21
-
# Pull gcc-13 fix pending upstream inclusion:
22
-
# https://github.com/myriadrf/LimeSuite/pull/384
23
-
(fetchpatch {
24
-
name = "gcc-13.patch";
25
-
url = "https://github.com/myriadrf/LimeSuite/commit/4ab51835d0fde4ffe6b7be2ac3dfa915e7d4d26e.patch";
26
-
hash = "sha256-53nLeluMtTPXxchbpftPE8Z1QMyi0UKp+0nRF4ufUgo=";
27
-
})
28
-
];
29
30
nativeBuildInputs = [ cmake ];
31
···
1
{ lib, stdenv, fetchFromGitHub, cmake
0
2
, sqlite, wxGTK32, libusb1, soapysdr
3
, mesa_glu, libX11, gnuplot, fltk
4
, GLUT
···
7
8
stdenv.mkDerivation rec {
9
pname = "limesuite";
10
+
version = "23.10.0";
11
12
src = fetchFromGitHub {
13
owner = "myriadrf";
14
repo = "LimeSuite";
15
rev = "v${version}";
16
+
sha256 = "sha256-o58UNc4r+MQbH00727YTV17M7D29BbH8CgUXCORKk7E=";
17
};
0
0
0
0
0
0
0
0
0
0
18
19
nativeBuildInputs = [ cmake ];
20