Skip to content

Commit 76fae76

Browse files
Merge master into staging-next
2 parents b658d41 + 5330b2a commit 76fae76

File tree

29 files changed

+2554
-132
lines changed

29 files changed

+2554
-132
lines changed

maintainers/maintainer-list.nix

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12001,6 +12001,12 @@
1200112001
githubId = 12898828;
1200212002
keys = [ { fingerprint = "B44A DFDF F869 A66A 3FDF DD8B 8609 A7B5 19E5 E342"; } ];
1200312003
};
12004+
kmatasfp = {
12005+
email = "[email protected]";
12006+
name = "Kaur Matas";
12007+
github = "kmatasfp";
12008+
githubId = 33095685;
12009+
};
1200412010
kmcopper = {
1200512011
email = "[email protected]";
1200612012
name = "Kyle Copperfield";
@@ -23433,6 +23439,12 @@
2343323439
githubId = 17836748;
2343423440
name = "Mason Mackaman";
2343523441
};
23442+
usertam = {
23443+
email = "[email protected]";
23444+
github = "usertam";
23445+
githubId = 22500027;
23446+
name = "Samuel Tam";
23447+
};
2343623448
uskudnik = {
2343723449
email = "[email protected]";
2343823450
github = "uskudnik";

pkgs/applications/radio/welle-io/default.nix

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
fftwSinglePrec,
1818
lame,
1919
mpg123,
20+
withFlac ? true,
21+
flac,
2022
}:
2123

2224
stdenv.mkDerivation rec {
@@ -48,12 +50,12 @@ stdenv.mkDerivation rec {
4850
qt5compat
4951
rtl-sdr
5052
soapysdr-with-plugins
51-
];
53+
] ++ lib.optional withFlac flac;
5254

5355
cmakeFlags = [
5456
"-DRTLSDR=true"
5557
"-DSOAPYSDR=true"
56-
];
58+
] ++ lib.optional withFlac "-DFLAC=true";
5759

5860
meta = {
5961
description = "DAB/DAB+ Software Radio";

pkgs/by-name/ci/circt/package.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ let
1919
in
2020
stdenv.mkDerivation rec {
2121
pname = "circt";
22-
version = "1.98.0";
22+
version = "1.99.1";
2323
src = fetchFromGitHub {
2424
owner = "llvm";
2525
repo = "circt";
2626
rev = "firtool-${version}";
27-
hash = "sha256-wkaspxwWJ7xJVQ+VZ9Z85zbzOcLAb3v55EJQjd+jiw8=";
27+
hash = "sha256-pnC8BLf2encv7UR10q6rTTpAZ6T0fETwumwTSu+Q8Ro=";
2828
fetchSubmodules = true;
2929
};
3030

pkgs/by-name/do/dolibarr/package.nix

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88

99
stdenv.mkDerivation rec {
1010
pname = "dolibarr";
11-
version = "20.0.0";
11+
version = "20.0.2";
1212

1313
src = fetchFromGitHub {
1414
owner = "Dolibarr";
1515
repo = "dolibarr";
16-
rev = version;
17-
hash = "sha256-nxytzUEpEo1qeIlpbPQ4mETl5DAAP+d1bqUcYxEW26E=";
16+
tag = version;
17+
hash = "sha256-5OEZpBxTYXhO27ea/GBmJI9uDLRDgMNc9ehQ7mvvSrY=";
1818
};
1919

2020
dontBuild = true;
@@ -23,12 +23,12 @@ stdenv.mkDerivation rec {
2323
find . -type f -name "*.php" -print0 | xargs -0 sed -i 's|/etc/dolibarr|${stateDir}|g'
2424
2525
substituteInPlace htdocs/filefunc.inc.php \
26-
--replace '//$conffile = ' '$conffile = ' \
27-
--replace '//$conffiletoshow = ' '$conffiletoshow = '
26+
--replace-fail '//$conffile = ' '$conffile = ' \
27+
--replace-fail '//$conffiletoshow = ' '$conffiletoshow = '
2828
2929
substituteInPlace htdocs/install/inc.php \
30-
--replace '//$conffile = ' '$conffile = ' \
31-
--replace '//$conffiletoshow = ' '$conffiletoshow = '
30+
--replace-fail '//$conffile = ' '$conffile = ' \
31+
--replace-fail '//$conffiletoshow = ' '$conffiletoshow = '
3232
'';
3333

3434
installPhase = ''
@@ -38,10 +38,11 @@ stdenv.mkDerivation rec {
3838

3939
passthru.tests = { inherit (nixosTests) dolibarr; };
4040

41-
meta = with lib; {
41+
meta = {
4242
description = "Enterprise resource planning (ERP) and customer relationship manager (CRM) server";
43+
changelog = "https://github.com/Dolibarr/dolibarr/releases/tag/${src.tag}";
4344
homepage = "https://dolibarr.org/";
44-
license = licenses.gpl3Plus;
45-
maintainers = [ ];
45+
license = lib.licenses.gpl3Plus;
46+
maintainers = with lib.maintainers; [ GaetanLepage ];
4647
};
4748
}

0 commit comments

Comments
 (0)