Merge remote-tracking branch 'origin/master' into haskell-updates

This commit is contained in:
sternenseemann 2021-11-28 19:31:56 +01:00
commit 31ff641504
96 changed files with 3738 additions and 2785 deletions

View File

@ -2013,6 +2013,16 @@ Superuser created successfully.
file. file.
</para> </para>
</listitem> </listitem>
<listitem>
<para>
hydrus has been upgraded from version <literal>438</literal>
to <literal>463</literal>. Since upgrading between releases
this old is advised against, be sure to have a backup of your
data before upgrading. For details, see
<link xlink:href="https://hydrusnetwork.github.io/hydrus/help/getting_started_installing.html#big_updates">the
hydrus manual</link>.
</para>
</listitem>
</itemizedlist> </itemizedlist>
</section> </section>
</section> </section>

View File

@ -547,3 +547,5 @@ In addition to numerous new and upgraded packages, this release has the followin
- `julia` now refers to `julia-stable` instead of `julia-lts`. In practice this means it has been upgraded from `1.0.4` to `1.5.4`. - `julia` now refers to `julia-stable` instead of `julia-lts`. In practice this means it has been upgraded from `1.0.4` to `1.5.4`.
- RetroArch has been upgraded from version `1.8.5` to `1.9.13.2`. Since the previous release was quite old, if you're having issues after the upgrade, please delete your `$XDG_CONFIG_HOME/retroarch/retroarch.cfg` file. - RetroArch has been upgraded from version `1.8.5` to `1.9.13.2`. Since the previous release was quite old, if you're having issues after the upgrade, please delete your `$XDG_CONFIG_HOME/retroarch/retroarch.cfg` file.
- hydrus has been upgraded from version `438` to `463`. Since upgrading between releases this old is advised against, be sure to have a backup of your data before upgrading. For details, see [the hydrus manual](https://hydrusnetwork.github.io/hydrus/help/getting_started_installing.html#big_updates).

View File

@ -222,7 +222,7 @@ in
serviceConfig = { serviceConfig = {
User = "monero"; User = "monero";
Group = "monero"; Group = "monero";
ExecStart = "${pkgs.monero}/bin/monerod --config-file=${configFile} --non-interactive"; ExecStart = "${pkgs.monero-cli}/bin/monerod --config-file=${configFile} --non-interactive";
Restart = "always"; Restart = "always";
SuccessExitStatus = [ 0 1 ]; SuccessExitStatus = [ 0 1 ];
}; };

View File

@ -34,6 +34,8 @@ in
systemd.services.vmware = systemd.services.vmware =
{ description = "VMWare Guest Service"; { description = "VMWare Guest Service";
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
after = [ "display-manager.service" ];
unitConfig.ConditionVirtualization = "vmware";
serviceConfig.ExecStart = "${open-vm-tools}/bin/vmtoolsd"; serviceConfig.ExecStart = "${open-vm-tools}/bin/vmtoolsd";
}; };
@ -42,8 +44,7 @@ in
{ {
description = "VMware vmblock fuse mount"; description = "VMware vmblock fuse mount";
documentation = [ "https://github.com/vmware/open-vm-tools/blob/master/open-vm-tools/vmblock-fuse/design.txt" ]; documentation = [ "https://github.com/vmware/open-vm-tools/blob/master/open-vm-tools/vmblock-fuse/design.txt" ];
before = [ "vmware.service" ]; unitConfig.ConditionVirtualization = "vmware";
wants = [ "vmware.service" ];
what = "${open-vm-tools}/bin/vmware-vmblock-fuse"; what = "${open-vm-tools}/bin/vmware-vmblock-fuse";
where = "/run/vmblock-fuse"; where = "/run/vmblock-fuse";
type = "fuse"; type = "fuse";

View File

@ -0,0 +1,29 @@
{ lib, stdenv, fetchurl, autoPatchelfHook }:
stdenv.mkDerivation {
pname = "losslessaudiochecker";
version = "2.0.5";
src = fetchurl {
url = "https://web.archive.org/web/20211119122205/https://losslessaudiochecker.com/dl/LAC-Linux-64bit.tar.gz";
sha256 = "1i1zbl7sqwxwmhw89lgz922l5k85in3y76zb06h8j3zd0lb20wkq";
};
nativeBuildInputs = [ autoPatchelfHook ];
setSourceRoot = "sourceRoot=$PWD";
dontBuild = true;
installPhase = ''
install LAC -D -t $out/bin
'';
meta = {
description = "Utility to check whether audio is truly lossless or not";
homepage = "https://losslessaudiochecker.com";
license = lib.licenses.unfree;
platforms = lib.platforms.x86_64;
maintainers = with lib.maintainers; [ p-h ];
};
}

View File

@ -0,0 +1,25 @@
From a4bf7df795146c843696daee8c02826ba0034298 Mon Sep 17 00:00:00 2001
From: Florian Klink <flokli@flokli.de>
Date: Sun, 21 Nov 2021 12:04:48 +0100
Subject: [PATCH] setup.py: remove dbus-python from list
I wasn't able to convince setuptools to find this.
---
setup.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/setup.py b/setup.py
index 61d6831..013fff3 100644
--- a/setup.py
+++ b/setup.py
@@ -42,7 +42,6 @@ setuptools.setup(
install_requires=[
'docopt',
'chardet',
- 'dbus-python',
'docopt',
'requests',
'setproctitle',
--
2.33.1

View File

@ -1,43 +1,64 @@
{ fetchFromGitHub, lib, pythonPackages { fetchFromGitHub
, mp3Support ? true, lame ? null , lib
, opusSupport ? true, opusTools ? null , python3Packages
, faacSupport ? false, faac ? null , mp3Support ? true
, flacSupport ? true, flac ? null , lame
, soxSupport ? true, sox ? null , opusSupport ? true
, vorbisSupport ? true, vorbis-tools ? null , opusTools
, faacSupport ? false
, faac
, flacSupport ? true
, flac
, soxSupport ? true
, sox
, vorbisSupport ? true
, vorbis-tools
, pulseaudio
}: }:
assert mp3Support -> lame != null; python3Packages.buildPythonApplication {
assert opusSupport -> opusTools != null;
assert faacSupport -> faac != null;
assert flacSupport -> flac != null;
assert soxSupport -> sox != null;
assert vorbisSupport -> vorbis-tools != null;
let
zeroconf = pythonPackages.callPackage ./zeroconf.nix { };
in
pythonPackages.buildPythonApplication {
pname = "pulseaudio-dlna"; pname = "pulseaudio-dlna";
version = "unstable-2017-11-01"; version = "unstable-2021-11-09";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "masmu"; owner = "Cygn";
repo = "pulseaudio-dlna"; repo = "pulseaudio-dlna";
rev = "4472928dd23f274193f14289f59daec411023ab0"; rev = "637a2e7bba2277137c5f12fb58e63100dab7cbe6";
sha256 = "1dfn7036vrq49kxv4an7rayypnm5dlawsf02pfsldw877hzdamqk"; sha256 = "sha256-Oda+zQQJE2D3fiNWTzxYvI8cZVHG5JAoV2Wf5Z6IU3M=";
}; };
propagatedBuildInputs = with pythonPackages; [ patches = [
dbus-python docopt requests setproctitle protobuf psutil futures ./0001-setup.py-remove-dbus-python-from-list.patch
chardet notify2 netifaces pyroute2 pygobject2 lxml setuptools ] ];
++ [ zeroconf ]
++ lib.optional mp3Support lame propagatedBuildInputs = with python3Packages; [
++ lib.optional opusSupport opusTools dbus-python
++ lib.optional faacSupport faac docopt
++ lib.optional flacSupport flac requests
++ lib.optional soxSupport sox setproctitle
++ lib.optional vorbisSupport vorbis-tools; protobuf
psutil
chardet
netifaces
notify2
pyroute2
pygobject3
PyChromecast
lxml
setuptools
zeroconf
]
++ lib.optional mp3Support lame
++ lib.optional opusSupport opusTools
++ lib.optional faacSupport faac
++ lib.optional flacSupport flac
++ lib.optional soxSupport sox
++ lib.optional vorbisSupport vorbis-tools;
# pulseaudio-dlna shells out to pactl to configure sinks and sources.
# As pactl might not be in $PATH, add --suffix it (so pactl configured by the
# user get priority)
makeWrapperArgs = [ "--suffix PATH : ${lib.makeBinPath [ pulseaudio ]}" ];
# upstream has no tests # upstream has no tests
checkPhase = '' checkPhase = ''
@ -46,7 +67,7 @@ pythonPackages.buildPythonApplication {
meta = with lib; { meta = with lib; {
description = "A lightweight streaming server which brings DLNA / UPNP and Chromecast support to PulseAudio and Linux"; description = "A lightweight streaming server which brings DLNA / UPNP and Chromecast support to PulseAudio and Linux";
homepage = "https://github.com/masmu/pulseaudio-dlna"; homepage = "https://github.com/Cygn/pulseaudio-dlna";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ mog ]; maintainers = with maintainers; [ mog ];
platforms = platforms.linux; platforms = platforms.linux;

View File

@ -1,25 +0,0 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, unbound, openssl, boost
, lmdb, miniupnpc, readline }:
stdenv.mkDerivation rec {
pname = "dero";
version = "0.11.7";
src = fetchFromGitHub {
owner = "deroproject";
repo = "dero";
rev = "v${version}";
sha256 = "1v8b9wbmqbpyf4jpc0v276qzk3hc5fpddcmwvv5k5yfi30nmbh5c";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ boost miniupnpc openssl lmdb unbound readline ];
meta = with lib; {
description = "Secure, private blockchain with smart contracts based on Monero";
homepage = "https://dero.io/";
license = licenses.bsd3;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.linux;
};
}

View File

@ -8,7 +8,7 @@
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "monero"; pname = "monero-cli";
version = "0.17.2.3"; version = "0.17.2.3";
src = fetchFromGitHub { src = fetchFromGitHub {

View File

@ -5,7 +5,7 @@
, qtmultimedia, qtxmlpatterns , qtmultimedia, qtxmlpatterns
, qtquickcontrols, qtquickcontrols2 , qtquickcontrols, qtquickcontrols2
, qtmacextras , qtmacextras
, monero, miniupnpc, unbound, readline , monero-cli, miniupnpc, unbound, readline
, boost, libunwind, libsodium, pcsclite , boost, libunwind, libsodium, pcsclite
, randomx, zeromq, libgcrypt, libgpg-error , randomx, zeromq, libgcrypt, libgpg-error
, hidapi, rapidjson, quirc , hidapi, rapidjson, quirc
@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
qtbase qtdeclarative qtgraphicaleffects qtbase qtdeclarative qtgraphicaleffects
qtmultimedia qtquickcontrols qtquickcontrols2 qtmultimedia qtquickcontrols qtquickcontrols2
qtxmlpatterns qtxmlpatterns
monero miniupnpc unbound readline monero-cli miniupnpc unbound readline
randomx libgcrypt libgpg-error randomx libgcrypt libgpg-error
boost libunwind libsodium pcsclite boost libunwind libsodium pcsclite
zeromq hidapi rapidjson quirc zeromq hidapi rapidjson quirc
@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
postUnpack = '' postUnpack = ''
# copy monero sources here # copy monero sources here
# (needs to be writable) # (needs to be writable)
cp -r ${monero.source}/* source/monero cp -r ${monero-cli.source}/* source/monero
chmod -R +w source/monero chmod -R +w source/monero
''; '';
@ -58,7 +58,7 @@ stdenv.mkDerivation rec {
# use monerod from the monero package # use monerod from the monero package
substituteInPlace src/daemon/DaemonManager.cpp \ substituteInPlace src/daemon/DaemonManager.cpp \
--replace 'QApplication::applicationDirPath() + "' '"${monero}/bin' --replace 'QApplication::applicationDirPath() + "' '"${monero-cli}/bin'
# 1: only build external deps, *not* the full monero # 1: only build external deps, *not* the full monero
# 2: use nixpkgs libraries # 2: use nixpkgs libraries

View File

@ -38,13 +38,13 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "cudatext"; pname = "cudatext";
version = "1.148.0"; version = "1.150.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Alexey-T"; owner = "Alexey-T";
repo = "CudaText"; repo = "CudaText";
rev = version; rev = version;
sha256 = "sha256-/wvtIPF/1HneW0zuT7+VCixemkw91MdU0S66bz2y48U="; sha256 = "sha256-6XG4v2S7InKA6OVrV+q1lT/CzNxmzVQfmAAo2cqbqBY=";
}; };
postPatch = '' postPatch = ''

View File

@ -11,13 +11,13 @@
}, },
"ATFlatControls": { "ATFlatControls": {
"owner": "Alexey-T", "owner": "Alexey-T",
"rev": "2021.10.19", "rev": "2021.11.11",
"sha256": "sha256-NO1q4qDXZ0x0G6AtcRP9xnFDWuBzOvxq8G7I76LgaBw=" "sha256": "sha256-lbRRiA8CHWmosJefTHrP2cTgU8nlK1SmNcppG6Bl54I="
}, },
"ATSynEdit": { "ATSynEdit": {
"owner": "Alexey-T", "owner": "Alexey-T",
"rev": "2021.10.27", "rev": "2021.11.25",
"sha256": "sha256-7DlnO7IeCFLU1A+HJt4CFXoHWfhAr52tBvfPNHieXMM=" "sha256": "sha256-CbH0C+UOJ9X2wKG5IEbgitda06lazujYM8l961k7C7g="
}, },
"ATSynEdit_Cmp": { "ATSynEdit_Cmp": {
"owner": "Alexey-T", "owner": "Alexey-T",
@ -31,8 +31,8 @@
}, },
"ATSynEdit_Ex": { "ATSynEdit_Ex": {
"owner": "Alexey-T", "owner": "Alexey-T",
"rev": "2021.09.03", "rev": "2021.11.25",
"sha256": "sha256-XYFnTfRa0n9XF9l/hL6z5RFZgdpVP9o1If4qln905Yc=" "sha256": "sha256-6hk9wNdoz1d3VpuW7yHyIQnnYseEAfgjCNGl6+o0Hjs="
}, },
"Python-for-Lazarus": { "Python-for-Lazarus": {
"owner": "Alexey-T", "owner": "Alexey-T",

View File

@ -10,14 +10,14 @@
python3Packages.buildPythonPackage rec { python3Packages.buildPythonPackage rec {
pname = "hydrus"; pname = "hydrus";
version = "462"; version = "463";
format = "other"; format = "other";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "hydrusnetwork"; owner = "hydrusnetwork";
repo = "hydrus"; repo = "hydrus";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-eHUztpnDs1kxaBlTO7BRbO3eH+On9m7aJtbNw2b9Ado="; sha256 = "sha256-GT5aIMskOVn4eAd4612YYA8uAQC8tuJzpEHNhc7pMuc=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -2,13 +2,13 @@
let let
pname = "anytype"; pname = "anytype";
version = "0.21.1"; version = "0.21.9";
name = "Anytype-${version}"; name = "Anytype-${version}";
nameExecutable = pname; nameExecutable = pname;
src = fetchurl { src = fetchurl {
url = "https://at9412003.fra1.digitaloceanspaces.com/Anytype-${version}.AppImage"; url = "https://at9412003.fra1.digitaloceanspaces.com/Anytype-${version}.AppImage";
name = "Anytype-${version}.AppImage"; name = "Anytype-${version}.AppImage";
sha256 = "sha256-5QsbB48g11TyfWCbR7Sz2AETEwdyG+bSJQNGRHrIueE="; sha256 = "sha256-By9rNvCY4voiePvYf47DMwPogUPTd5JdaINEE0ei1Is=";
}; };
appimageContents = appimageTools.extractType2 { inherit name src; }; appimageContents = appimageTools.extractType2 { inherit name src; };
in in

View File

@ -18,13 +18,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "cherrytree"; pname = "cherrytree";
version = "0.99.42"; version = "0.99.43";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "giuspen"; owner = "giuspen";
repo = "cherrytree"; repo = "cherrytree";
rev = version; rev = version;
sha256 = "sha256-PKjl9n6J0iNdcA56CZ/nAzvgRNwqRLTHjwi3HQYWIMU="; sha256 = "sha256-KSIdA585WbmvHXituCJoHpVRobfCZ62m5t7BWI6jIYk=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -1,15 +1,15 @@
{ lib, buildPythonApplication, fetchPypi, requests, youtube-dl, pytestCheckHook }: { lib, buildPythonApplication, fetchPypi, requests, yt-dlp, pytestCheckHook }:
buildPythonApplication rec { buildPythonApplication rec {
pname = "gallery_dl"; pname = "gallery_dl";
version = "1.19.2"; version = "1.19.3";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "7fec9ac69582dbd9922666e6ece3142ae52dc9679a2c4a613f6ee94ad09e5f68"; sha256 = "db3973a17f1074e4f4cb99b635b94c1926bdd549263e1df909498f3c6aa93484";
}; };
propagatedBuildInputs = [ requests youtube-dl ]; propagatedBuildInputs = [ requests yt-dlp ];
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];
pytestFlagsArray = [ pytestFlagsArray = [

View File

@ -2,19 +2,23 @@
buildGoModule rec { buildGoModule rec {
pname = "todoist"; pname = "todoist";
version = "0.15.0"; version = "0.16.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sachaos"; owner = "sachaos";
repo = "todoist"; repo = "todoist";
rev = "v${version}"; rev = "v${version}";
sha256 = "0d3c621jaqxd6i58xm6nvi0avrh5mk23r169i95bn73igzw62w33"; sha256 = "sha256-cfhwbL7RaeD5LWxlfqnHfPPPkC5AA3Z034p+hlFBWtg=";
}; };
vendorSha256 = "0cznb8glh36dwyyn1gx1ggkwa9zffrrxg52k78brnaczsl0rsmky"; vendorSha256 = "sha256-ly+OcRo8tGeNX4FnqNVaqjPx/A1FALOnScxs04lIOiU=";
doCheck = false; doCheck = false;
postPatch = ''
substituteInPlace main.go --replace '0.15.0' '${version}'
'';
meta = { meta = {
homepage = "https://github.com/sachaos/todoist"; homepage = "https://github.com/sachaos/todoist";
description = "Todoist CLI Client"; description = "Todoist CLI Client";

View File

@ -8,16 +8,16 @@
buildGoModule rec { buildGoModule rec {
pname = "wtf"; pname = "wtf";
version = "0.39.2"; version = "0.40.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "wtfutil"; owner = "wtfutil";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-nP56HzjtIg9EIOBda9TQl8soUqlGfRmixidWrmQ7+vs="; sha256 = "0hd5gnydxfncsmm7c58lvhkpnyxknvicc8f58xfh74azf363wcvm";
}; };
vendorSha256 = "sha256-yD4BUauYvyGk/D0Gr5Z15xWPtI/ZR9xTbmeS6RAxw1o="; vendorSha256 = "1pkdfg042kg3b6m5rf044gz5yg6vp3bbsay1mrrbaysnb3gs51dq";
doCheck = false; doCheck = false;
@ -35,6 +35,7 @@ buildGoModule rec {
meta = with lib; { meta = with lib; {
description = "The personal information dashboard for your terminal"; description = "The personal information dashboard for your terminal";
homepage = "https://wtfutil.com/"; homepage = "https://wtfutil.com/";
changelog = "https://github.com/wtfutil/wtf/raw/v${version}/CHANGELOG.md";
license = licenses.mpl20; license = licenses.mpl20;
maintainers = with maintainers; [ kalbasit ]; maintainers = with maintainers; [ kalbasit ];
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.linux ++ platforms.darwin;

View File

@ -87,11 +87,11 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "appgate-sdp"; pname = "appgate-sdp";
version = "5.4.2"; version = "5.5.0";
src = fetchurl { src = fetchurl {
url = "https://bin.appgate-sdp.com/${versions.majorMinor version}/client/appgate-sdp_${version}_amd64.deb"; url = "https://bin.appgate-sdp.com/${versions.majorMinor version}/client/appgate-sdp_${version}_amd64.deb";
sha256 = "sha256-wAhcTRO/Cd4MG1lfPNDq92yGcu3NOfymucddy92VaXo="; sha256 = "sha256-lWInks3DBkSpKQh+dcNyn43iY5vvE67FLadohBbF6n4=";
}; };
# just patch interpreter # just patch interpreter
@ -156,4 +156,3 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ ymatsiuk ]; maintainers = with maintainers; [ ymatsiuk ];
}; };
} }

View File

@ -2,14 +2,14 @@
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "flexget"; pname = "flexget";
version = "3.1.153"; version = "3.2.1";
# Fetch from GitHub in order to use `requirements.in` # Fetch from GitHub in order to use `requirements.in`
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "flexget"; owner = "flexget";
repo = "flexget"; repo = "flexget";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-xGGSm6IXTh89wSt0/DNgbe1mFBNuG9x3YLerJcBYMmI="; sha256 = "sha256-EOE72zpQj2yxxqDL9gqmu1NQ1B/lY1fh3EUwqpxf2xg=";
}; };
postPatch = '' postPatch = ''

View File

@ -1,7 +1,7 @@
{ lib, stdenv, unzip, fetchurl, electron_6, makeWrapper, geogebra }: { lib, stdenv, unzip, fetchurl, electron, makeWrapper, geogebra }:
let let
pname = "geogebra"; pname = "geogebra";
version = "6-0-644-0"; version = "6-0-676-0";
srcIcon = geogebra.srcIcon; srcIcon = geogebra.srcIcon;
desktopItem = geogebra.desktopItem; desktopItem = geogebra.desktopItem;
@ -18,9 +18,9 @@ let
src = fetchurl { src = fetchurl {
urls = [ urls = [
"https://download.geogebra.org/installers/6.0/GeoGebra-Linux64-Portable-${version}.zip" "https://download.geogebra.org/installers/6.0/GeoGebra-Linux64-Portable-${version}.zip"
"https://web.archive.org/web/20210604132845/https://download.geogebra.org/installers/6.0/GeoGebra-Linux64-Portable-${version}.zip" "https://web.archive.org/web/20211123222708/https://download.geogebra.org/installers/6.0/GeoGebra-Linux64-Portable-${version}.zip"
]; ];
sha256 = "bbe9e1a35abacfd560c0b7aa1ab975853e6adac08608bb70cd80261179e3f922"; sha256 = "0wn90n2nd476rkf83gk9vvcpbjflkrvyri50pnmv52j76n023hmm";
}; };
dontConfigure = true; dontConfigure = true;
@ -38,7 +38,7 @@ let
installPhase = '' installPhase = ''
mkdir -p $out/libexec/geogebra/ $out/bin mkdir -p $out/libexec/geogebra/ $out/bin
cp -r GeoGebra-linux-x64/{resources,locales} "$out/" cp -r GeoGebra-linux-x64/{resources,locales} "$out/"
makeWrapper ${lib.getBin electron_6}/bin/electron $out/bin/geogebra --add-flags "$out/resources/app" makeWrapper ${lib.getBin electron}/bin/electron $out/bin/geogebra --add-flags "$out/resources/app"
install -Dm644 "${desktopItem}/share/applications/"* \ install -Dm644 "${desktopItem}/share/applications/"* \
-t $out/share/applications/ -t $out/share/applications/
@ -53,9 +53,9 @@ let
src = fetchurl { src = fetchurl {
urls = [ urls = [
"https://download.geogebra.org/installers/6.0/GeoGebra-Classic-6-MacOS-Portable-${version}.zip" "https://download.geogebra.org/installers/6.0/GeoGebra-Classic-6-MacOS-Portable-${version}.zip"
"https://web.archive.org/web/20210406084052/https://download.geogebra.org/installers/6.0/GeoGebra-Classic-6-MacOS-Portable-${version}.zip" "https://web.archive.org/web/20211124143625/https://download.geogebra.org/installers/6.0/GeoGebra-Classic-6-MacOS-Portable-${version}.zip"
]; ];
sha256 = "0fa680yyz4nry1xvb9v6qqh1mib6grff5d3p7d90nyjlv101p262"; sha256 = "1dwv2f94a1c2y10lmy0i66cafynalp7dkqgnpk4f0mk6pir2fdgj";
}; };
dontUnpack = true; dontUnpack = true;

View File

@ -61,6 +61,28 @@ stdenv.mkDerivation rec {
]; ];
preConfigure = '' preConfigure = ''
# binutils 2.37 fixes
fixupList=(
cint/demo/gl/make0
cint/demo/exception/Makefile
cint/demo/makecint/KRcc/Makefile
cint/demo/makecint/Stub2/Make2
cint/demo/makecint/Array/Makefile
cint/demo/makecint/DArray/Makefile
cint/demo/makecint/ReadFile/Makefile
cint/demo/makecint/stl/Makefile
cint/demo/makecint/Stub2/Make1
cint/cint/include/makemat
cint/cint/lib/WildCard/Makefile
cint/cint/include/make.arc
cint/cint/lib/qt/Makefile
cint/cint/lib/pthread/Makefile
graf2d/asimage/src/libAfterImage/Makefile.in
)
for toFix in "''${fixupList[@]}"; do
substituteInPlace "$toFix" --replace "clq" "cq"
done
patchShebangs build/unix/ patchShebangs build/unix/
ln -s ${lib.getDev stdenv.cc.libc}/include/AvailabilityMacros.h cint/cint/include/ ln -s ${lib.getDev stdenv.cc.libc}/include/AvailabilityMacros.h cint/cint/include/
'' ''

View File

@ -14,7 +14,7 @@ let
if stdenv.hostPlatform.system == "i686-linux" then "SSE2" else if stdenv.hostPlatform.system == "i686-linux" then "SSE2" else
if stdenv.hostPlatform.system == "x86_64-linux" then "SSE4.1" else if stdenv.hostPlatform.system == "x86_64-linux" then "SSE4.1" else
if stdenv.hostPlatform.system == "x86_64-darwin" then "SSE4.1" else if stdenv.hostPlatform.system == "x86_64-darwin" then "SSE4.1" else
if stdenv.hostPlatform.system == "aarch64-linux" then "ARM_NEON" else if stdenv.hostPlatform.system == "aarch64-linux" then "ARM_NEON_ASIMD" else
"None"; "None";
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {

View File

@ -11,16 +11,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "delta"; pname = "delta";
version = "0.10.1"; version = "0.10.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "dandavison"; owner = "dandavison";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-aiWVaqwJGjLyv/ZJU4g1KuBC9zbnBEc/vdNADGPKgxo="; sha256 = "sha256-rQsicAUKlQYxA/DH8691jp6Pk97rer2X2CXUfXKHLDE=";
}; };
cargoSha256 = "sha256-lp9XzZQZJpjhsanZMky3RwkjM7ICq7dSb4PHdstwMxQ="; cargoSha256 = "sha256-NjyiGr7mwsHlggMQEKcCvOCfGabRJDBdrYW8ohU02mk=";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];

View File

@ -1,24 +1,31 @@
{ lib { lib
, fetchurl , fetchFromGitea
, buildPythonApplication , buildPythonApplication
, pbr , pbr
, requests , requests
, setuptools , setuptools
, genericUpdater
, common-updater-scripts
}: }:
buildPythonApplication rec { buildPythonApplication rec {
pname = "git-review"; pname = "git-review";
version = "2.1.0"; version = "2.2.0";
# Manually set version because prb wants to get it from the git # Manually set version because prb wants to get it from the git
# upstream repository (and we are installing from tarball instead) # upstream repository (and we are installing from tarball instead)
PBR_VERSION = version; PBR_VERSION = version;
src = fetchurl { src = fetchFromGitea {
url = "https://opendev.org/opendev/${pname}/archive/${version}.tar.gz"; domain = "opendev.org";
hash = "sha256-3A1T+/iXhNeMS2Aww5jISoiNExdv9N9/kwyATSuwVTE="; owner = "opendev";
repo = pname;
rev = version;
sha256 = "sha256-2+X5fPxB2FIp1fwqEUc+W0gH2NjhF/V+La+maE+XEpo=";
}; };
outputs = [ "out" "man" ];
nativeBuildInputs = [ nativeBuildInputs = [
pbr pbr
]; ];
@ -35,6 +42,11 @@ buildPythonApplication rec {
pythonImportsCheck = [ "git_review" ]; pythonImportsCheck = [ "git_review" ];
passthru.updateScript = genericUpdater {
inherit pname version;
versionLister = "${common-updater-scripts}/bin/list-git-tags ${src.meta.homepage}";
};
meta = with lib; { meta = with lib; {
description = "Tool to submit code to Gerrit"; description = "Tool to submit code to Gerrit";
homepage = "https://opendev.org/opendev/git-review"; homepage = "https://opendev.org/opendev/git-review";

View File

@ -47,13 +47,13 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "mkvtoolnix"; pname = "mkvtoolnix";
version = "62.0.0"; version = "63.0.0";
src = fetchFromGitLab { src = fetchFromGitLab {
owner = "mbunkus"; owner = "mbunkus";
repo = "mkvtoolnix"; repo = "mkvtoolnix";
rev = "release-${version}"; rev = "release-${version}";
sha256 = "0pjf1lkpjirqanazm7a28b8bsyin4i1kd1s4y169zsilzb28kpiz"; sha256 = "0jniy2kkg4fkrgyw2k8jcpq872qzkrxkbpbc7ksadm2rdygsa3xh";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -6,11 +6,11 @@
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "streamlink"; pname = "streamlink";
version = "3.0.1"; version = "3.0.3";
src = python3Packages.fetchPypi { src = python3Packages.fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-GDbUlu5tRL5mdT7KrIdmxCbeAtYL1xvZXyZFwiuvKXo="; sha256 = "sha256-oEK9p6OuqGSm2JdgfnJ+N0sJtRq6wCoVCGcU0GNEMLI=";
}; };
checkInputs = with python3Packages; [ checkInputs = with python3Packages; [

View File

@ -1,7 +1,7 @@
{ lib, fetchzip }: { lib, fetchzip }:
let let
version = "1.082"; version = "1.084";
in in
fetchzip { fetchzip {
name = "recursive-${version}"; name = "recursive-${version}";
@ -14,7 +14,7 @@ fetchzip {
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
''; '';
sha256 = "1hjyjvzhfgqw58py4gk58fwyp5pxr3j8j76ppj6apg4dndfhs0lp"; sha256 = "sha256-YL09RVU9pgP0/aGRKECHzd5t1VmNDPtOFcRygWqIisg=";
meta = with lib; { meta = with lib; {
homepage = "https://recursive.design/"; homepage = "https://recursive.design/";

View File

@ -1,11 +1,11 @@
{ lib, fetchzip }: { lib, fetchzip }:
let let
version = "0.60"; version = "0.61";
in fetchzip { in fetchzip {
name = "sudo-font-${version}"; name = "sudo-font-${version}";
url = "https://github.com/jenskutilek/sudo-font/releases/download/v${version}/sudo.zip"; url = "https://github.com/jenskutilek/sudo-font/releases/download/v${version}/sudo.zip";
sha256 = "1zhl9yhx0dzkzc31i60lmcrizq8f3rkc7dbng5fal6iy8dwhnkmg"; sha256 = "sha256-4GDlx2zhwkcsxJPq0IrS1owmw+RKy09X3Q0zzA9l79w=";
postFetch = '' postFetch = ''
mkdir -p $out/share/fonts/ mkdir -p $out/share/fonts/

View File

@ -1,28 +1,18 @@
{ lib, stdenv, fetchFromGitHub, fetchpatch, inkscape, xcursorgen }: { lib, stdenv, fetchFromGitHub, inkscape, xcursorgen }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.1"; pname = "numix-cursor-theme";
package-name = "numix-cursor-theme"; version = "1.2";
name = "${package-name}-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "numixproject"; owner = "numixproject";
repo = package-name; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "0p8h48wsy3z5dz9vdnp01fpn6q8ky0h74l5qgixlip557bsa1spi"; sha256 = "1q3w5i0h3ly6i7s9pqjdrb14kp89i78s0havri7lhiqyxizjvcvh";
}; };
nativeBuildInputs = [ inkscape xcursorgen ]; nativeBuildInputs = [ inkscape xcursorgen ];
patches = [
# Remove when https://github.com/numixproject/numix-cursor-theme/pull/7 is merged
(fetchpatch {
url = "https://github.com/stephaneyfx/numix-cursor-theme/commit/3b647bf768cebb8f127b88e3786f6a9640460197.patch";
sha256 = "174kmhlvv76wwvndkys78aqc32051sqg3wzc0xg6b7by4agrbg76";
name = "support-inkscape-1-in-numix-cursor-theme.patch";
})
];
buildPhase = '' buildPhase = ''
patchShebangs . patchShebangs .
HOME=$TMP ./build.sh HOME=$TMP ./build.sh

View File

@ -21,7 +21,6 @@
, libsoup , libsoup
, vte , vte
, webkitgtk , webkitgtk
, zeitgeist
, ctags , ctags
, libgit2-glib , libgit2-glib
, wrapGAppsHook , wrapGAppsHook
@ -74,7 +73,6 @@ stdenv.mkDerivation rec {
libsoup libsoup
vte vte
webkitgtk webkitgtk
zeitgeist
]; ];
# install script fails with UnicodeDecodeError because of printing a fancy elipsis character # install script fails with UnicodeDecodeError because of printing a fancy elipsis character

View File

@ -13,7 +13,6 @@
, libhandy , libhandy
, granite , granite
, gettext , gettext
, clutter-gtk
, elementary-icon-theme , elementary-icon-theme
, wrapGAppsHook , wrapGAppsHook
}: }:
@ -46,7 +45,6 @@ stdenv.mkDerivation rec {
]; ];
buildInputs = [ buildInputs = [
clutter-gtk
elementary-icon-theme elementary-icon-theme
granite granite
gtk3 gtk3

View File

@ -1,36 +1,20 @@
{ lib, stdenv, fetchFromGitHub, z3, ocamlPackages, makeWrapper, installShellFiles }: { lib, stdenv, fetchFromGitHub, z3, ocamlPackages, makeWrapper, installShellFiles }:
let
# FStar requires sedlex < 2.4
# see https://github.com/FStarLang/FStar/issues/2343
sedlex-2_3 = ocamlPackages.sedlex_2.overrideAttrs (_: rec {
pname = "sedlex";
version = "2.3";
src = fetchFromGitHub {
owner = "ocaml-community";
repo = "sedlex";
rev = "v${version}";
sha256 = "WXUXUuIaBUrFPQOKtZ7dgDZYdpEVnoJck0dkrCi8g0c=";
};
});
in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "fstar"; pname = "fstar";
version = "2021.10.16"; version = "2021.11.27";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "FStarLang"; owner = "FStarLang";
repo = "FStar"; repo = "FStar";
rev = "v${version}"; rev = "v${version}";
sha256 = "03b693s7s7dzflv5qkf61gd8ji9bn6fq4pxd8pd3a6ppkwj6b5vc"; sha256 = "sha256-OpY7vDb37ym4srsmD+deXiuofUJKRyKXG7g3zsJKvHo=";
}; };
nativeBuildInputs = [ makeWrapper installShellFiles ]; nativeBuildInputs = [ makeWrapper installShellFiles ];
buildInputs = [ buildInputs = [
z3 z3
sedlex-2_3
] ++ (with ocamlPackages; [ ] ++ (with ocamlPackages; [
ocaml ocaml
findlib findlib
@ -43,6 +27,7 @@ stdenv.mkDerivation rec {
menhir menhir
menhirLib menhirLib
pprint pprint
sedlex_2
ppxlib ppxlib
ppx_deriving ppx_deriving
ppx_deriving_yojson ppx_deriving_yojson

View File

@ -2,12 +2,12 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "julia-bin"; pname = "julia-bin";
version = "1.6.3"; version = "1.6.4";
src = { src = {
x86_64-linux = fetchurl { x86_64-linux = fetchurl {
url = "https://julialang-s3.julialang.org/bin/linux/x64/${lib.versions.majorMinor version}/julia-${version}-linux-x86_64.tar.gz"; url = "https://julialang-s3.julialang.org/bin/linux/x64/${lib.versions.majorMinor version}/julia-${version}-linux-x86_64.tar.gz";
sha256 = "0jrijj9snfx70692z2301rjassvwjcsjbxdsjyif9hyp9hrrqif7"; sha256 = "0ci1dd8g1pgpp6j1v971zg8xpw120hdjblf9zcyhgs4pfvj4l92j";
}; };
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
''; '';
patches = [ patches = [
# Source release Nix patch(es) relevant for binary releases as well. # Source release Nix patch(es) relevant for binary releases as well.
./patches/1.6-bin/0002-nix-Skip-tempname-test-broken-in-sandbox.patch
./patches/1.6-bin/0005-nix-Enable-parallel-unit-tests-for-sandbox.patch ./patches/1.6-bin/0005-nix-Enable-parallel-unit-tests-for-sandbox.patch
]; ];
postPatch = '' postPatch = ''

View File

@ -1,28 +0,0 @@
From ffe227676352a910754d96d92e9b06e475f28ff1 Mon Sep 17 00:00:00 2001
From: Pontus Stenetorp <pontus@stenetorp.se>
Date: Thu, 8 Apr 2021 04:25:19 +0000
Subject: [PATCH 2/6] nix: Skip `tempname` test broken in sandbox
Reported upstream:
https://github.com/JuliaLang/julia/issues/38873
---
test/file.jl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/file.jl b/test/file.jl
index 0f39bc7c14..bd4dd78f62 100644
--- a/test/file.jl
+++ b/test/file.jl
@@ -95,7 +95,7 @@ end
@test dirname(t) == tempdir()
mktempdir() do d
t = tempname(d)
- @test dirname(t) == d
+ @test_skip dirname(t) == d
end
@test_throws ArgumentError tempname(randstring())
end
--
2.29.3

View File

@ -2,8 +2,8 @@
let let
base = callPackage ./generic.nix (_args // { base = callPackage ./generic.nix (_args // {
version = "7.4.25"; version = "7.4.26";
sha256 = "sha256-J5klcMrz4uUyOrezeFPETBUpsdMeqU2Xdu+pHVp4ExM="; sha256 = "0k803j5wf4jv72px0zqz2z2hxyk2w3jr6xyczy568dx4z2l8i2yn";
}); });
in in

View File

@ -2,8 +2,8 @@
let let
base = callPackage ./generic.nix (_args // { base = callPackage ./generic.nix (_args // {
version = "8.0.12"; version = "8.0.13";
sha256 = "sha256-tIhtsd8yLcj7Eo2LNK5+lPb8aC7LKf9PWlkdTen+rb8="; sha256 = "0djqh650clz4fy1zifazf0jq383znksydx23f1s48prrlixrshf2";
}); });
in in

View File

@ -1,19 +1,15 @@
{ lib, stdenv, fetchurl, fetchpatch, libtool }: { lib, stdenv, fetchFromGitHub, autoreconfHook, libtool }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "getdata"; pname = "getdata";
version = "0.10.0"; version = "0.11.0";
src = fetchurl { src = fetchFromGitHub {
url = "mirror://sourceforge/getdata/${pname}-${version}.tar.xz"; owner = "ketiltrout";
sha256 = "18xbb32vygav9x6yz0gdklif4chjskmkgp06rwnjdf9myhia0iym"; repo = pname;
rev = "v${version}";
sha256 = "sha256-fuFakbkxDwDp6Z9VITPIB8NiYRSp98Ub1y5SC6W5S1E=";
}; };
patches = [ nativeBuildInputs = [ autoreconfHook ];
(fetchpatch {
url = "https://sources.debian.org/data/main/libg/libgetdata/0.10.0-10/debian/patches/CVE-2021-20204.patch";
sha256 = "1lvp1c2pkk9kxniwlvax6d8fsmjrkpxawf71c7j4rfjm6dgvivzm";
})
];
buildInputs = [ libtool ]; buildInputs = [ libtool ];
meta = with lib; { meta = with lib; {

View File

@ -44,6 +44,16 @@ stdenv.mkDerivation {
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-libs/libafterimage/files/libafterimage-makefile.in.patch?id=4aa4fca00611b0b3a4007870da43cc5fd63f76c4"; url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-libs/libafterimage/files/libafterimage-makefile.in.patch?id=4aa4fca00611b0b3a4007870da43cc5fd63f76c4";
sha256 = "1n6fniz6dldms615046yhc4mlg9gb53y4yfia8wfz6szgq5zicj4"; sha256 = "1n6fniz6dldms615046yhc4mlg9gb53y4yfia8wfz6szgq5zicj4";
}) })
# Fix build failure against binutils-2.36:
# https://sourceforge.net/p/afterstep/bugs/5/
(fetchpatch {
name = "binutils-2.36.patch";
url = "https://sourceforge.net/p/afterstep/bugs/5/attachment/libafterimage-binutils-2.36-support.patch";
sha256 = "1cfgm2ffwlsmhvvfmrxlglddaigr99k88d5xqva9pkl3mmzy3jym";
# workaround '-p0' patchflags below.
stripLen = 1;
})
]; ];
patchFlags = [ "-p0" ]; patchFlags = [ "-p0" ];

View File

@ -9,13 +9,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "libcint"; pname = "libcint";
version = "4.4.0"; version = "4.4.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sunqm"; owner = "sunqm";
repo = "libcint"; repo = "libcint";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-nsIyosn8dBf217UmjXSKLTM2RhIQHCSvPlrvlqo5KLc="; sha256 = "sha256-eWUuORMZs6Bl/zFGYZkpgNAgJPIei+k0cQoWl+v+zxo=";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
@ -24,6 +24,9 @@ stdenv.mkDerivation rec {
"-DENABLE_TEST=1" "-DENABLE_TEST=1"
"-DQUICK_TEST=1" "-DQUICK_TEST=1"
"-DCMAKE_INSTALL_PREFIX=" # ends up double-adding /nix/store/... prefix, this avoids issue "-DCMAKE_INSTALL_PREFIX=" # ends up double-adding /nix/store/... prefix, this avoids issue
"-DWITH_RANGE_COULOMB:STRING=1"
"-DWITH_FORTRAN:STRING=1"
"-DMIN_EXPCUTOFF:STRING=20"
]; ];
strictDeps = true; strictDeps = true;

View File

@ -17,7 +17,15 @@ stdenv.mkDerivation rec {
patchShebangs ./ patchShebangs ./
''; '';
cmakeFlags = [ "-DENABLE_FORTRAN=ON" "-DBUILD_SHARED_LIBS=ON" ]; cmakeFlags = [
"-DENABLE_FORTRAN=ON"
"-DBUILD_SHARED_LIBS=ON"
# Force compilation of higher derivatives
"-DDISABLE_VXC=0"
"-DDISABLE_FXC=0"
"-DDISABLE_KXC=0"
"-DDISABLE_LXC=0"
];
preCheck = '' preCheck = ''
export LD_LIBRARY_PATH=$(pwd) export LD_LIBRARY_PATH=$(pwd)
@ -29,7 +37,7 @@ stdenv.mkDerivation rec {
description = "Library of exchange-correlation functionals for density-functional theory"; description = "Library of exchange-correlation functionals for density-functional theory";
homepage = "https://www.tddft.org/programs/Libxc/"; homepage = "https://www.tddft.org/programs/Libxc/";
license = licenses.mpl20; license = licenses.mpl20;
platforms = [ "x86_64-linux" ]; platforms = platforms.unix;
maintainers = with maintainers; [ markuskowa ]; maintainers = with maintainers; [ markuskowa ];
}; };
} }

View File

@ -0,0 +1,25 @@
{ stdenv, lib, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "cppe";
version = "0.3.1";
src = fetchFromGitHub {
owner = "maxscheurer";
repo = pname;
rev = "v${version}";
sha256 = "sha256-guM7+ZWDJLcAUJtPkKLvC4LYSA2eBvER7cgwPZ7FxHw=";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ];
meta = with lib; {
description = "C++ and Python library for Polarizable Embedding";
homepage = "https://github.com/maxscheurer/cppe";
license = licenses.lgpl3Only;
platforms = platforms.unix;
maintainers = [ maintainers.sheepforce ];
};
}

View File

@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
owner = "dftlibs"; owner = "dftlibs";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256= "1bj70cnhbh6ziy02x988wwl7cbwaq17ld7qwhswqkgnnx8rpgxid"; sha256 = "1bj70cnhbh6ziy02x988wwl7cbwaq17ld7qwhswqkgnnx8rpgxid";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -0,0 +1,29 @@
/* Generated file. */
args @ { fetchurl, ... }:
rec {
baseName = "cl-shellwords";
version = "20150923-git";
description = "Common Lisp port of Ruby's shellwords.rb, for escaping and
splitting strings to be passed to a shell.";
deps = [ args."cl-ppcre" ];
src = fetchurl {
url = "http://beta.quicklisp.org/archive/cl-shellwords/2015-09-23/cl-shellwords-20150923-git.tgz";
sha256 = "1rb0ajpl2lai6bj4x0p3wf0cnf51nnyidhca4lpqp1w1wf1vkcqk";
};
packageName = "cl-shellwords";
asdFilesToKeep = ["cl-shellwords.asd"];
overrides = x: x;
}
/* (SYSTEM cl-shellwords DESCRIPTION
Common Lisp port of Ruby's shellwords.rb, for escaping and
splitting strings to be passed to a shell.
SHA256 1rb0ajpl2lai6bj4x0p3wf0cnf51nnyidhca4lpqp1w1wf1vkcqk URL
http://beta.quicklisp.org/archive/cl-shellwords/2015-09-23/cl-shellwords-20150923-git.tgz
MD5 c2c62c6a2ce4ed2590d60707ead2e084 NAME cl-shellwords FILENAME
cl-shellwords DEPS ((NAME cl-ppcre FILENAME cl-ppcre)) DEPENDENCIES
(cl-ppcre) VERSION 20150923-git SIBLINGS (cl-shellwords-test) PARASITES NIL) */

View File

@ -71,6 +71,7 @@ cl-prevalence
cl-protobufs cl-protobufs
cl-qprint cl-qprint
cl-reexport cl-reexport
cl-shellwords
cl-slice cl-slice
cl-smt-lib cl-smt-lib
cl-smtp cl-smtp

View File

@ -4024,6 +4024,15 @@ let quicklisp-to-nix-packages = rec {
})); }));
"cl-shellwords" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."cl-shellwords" or (x: {}))
(import ./quicklisp-to-nix-output/cl-shellwords.nix {
inherit fetchurl;
"cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre";
}));
"cl-reexport" = buildLispPackage "cl-reexport" = buildLispPackage
((f: x: (x // (f x))) ((f: x: (x // (f x)))
(qlOverrides."cl-reexport" or (x: {})) (qlOverrides."cl-reexport" or (x: {}))

View File

@ -129,6 +129,7 @@
, "@gitbeaker/cli" , "@gitbeaker/cli"
, "gitmoji-cli" , "gitmoji-cli"
, "glob" , "glob"
, "gramma"
, "graphql-cli" , "graphql-cli"
, "graphqurl" , "graphqurl"
, "grunt-cli" , "grunt-cli"

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
{ lib, fetchzip, buildDunePackage, ssl, lwt }: { lib, fetchFromGitHub, buildDunePackage, ssl, lwt }:
buildDunePackage rec { buildDunePackage rec {
pname = "lwt_ssl"; pname = "lwt_ssl";
@ -7,9 +7,11 @@ buildDunePackage rec {
minimumOCamlVersion = "4.02"; minimumOCamlVersion = "4.02";
useDune2 = true; useDune2 = true;
src = fetchzip { src = fetchFromGitHub {
url = "https://github.com/aantron/${pname}/archive/${version}.tar.gz"; owner = "aantron";
sha256 = "0v417ch5zn0yknj156awa5mrq3mal08pbrvsyribbn63ix6f9y3p"; repo = "lwt_ssl";
rev = version;
sha256 = "sha256-d/jkTI/D2LVi9nrndRGgqg6ca1FcmRKknR7YXyA7gWw=";
}; };
propagatedBuildInputs = [ ssl lwt ]; propagatedBuildInputs = [ ssl lwt ];

View File

@ -1,12 +1,14 @@
{ lib, stdenv, fetchzip, ocaml, findlib, ocamlbuild, pgocaml, camlp4 }: { lib, stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, pgocaml, camlp4 }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "ocaml-macaque"; pname = "ocaml-macaque";
version = "0.7.2"; version = "0.7.2";
src = fetchzip { src = fetchFromGitHub {
url = "https://github.com/ocsigen/macaque/archive/${version}.tar.gz"; owner = "ocsigen";
sha256 = "14i0a8cndzndjmlkyhf31r451q99cnkndgxcj0id4qjqhdl4bmjv"; repo = "macaque";
rev = version;
sha256 = "sha256-W9ZFaINYYtIikKy/ZqdlKeFQSA7DQT9plc3+ZhlSIJI=";
}; };
buildInputs = [ ocaml findlib ocamlbuild camlp4 ]; buildInputs = [ ocaml findlib ocamlbuild camlp4 ];

View File

@ -1,4 +1,4 @@
{ lib, buildDunePackage, fetchzip, ocaml, uchar, uutf, ounit2 }: { lib, buildDunePackage, fetchFromGitHub, ocaml, uchar, uutf, ounit2 }:
buildDunePackage rec { buildDunePackage rec {
pname = "markup"; pname = "markup";
@ -6,9 +6,11 @@ buildDunePackage rec {
useDune2 = true; useDune2 = true;
src = fetchzip { src = fetchFromGitHub {
url = "https://github.com/aantron/markup.ml/archive/${version}.tar.gz"; owner = "aantron";
sha256 = "09hkrf9pw6hpb9j06p5bddklpnjwdjpqza3bx2179l970yl67an9"; repo = "markup.ml";
rev = version;
sha256 = "sha256-yapjqAcn0XSC6Guoj69sXNpLZ2urXANkWhcafpPLEyY=";
}; };
propagatedBuildInputs = [ uchar uutf ]; propagatedBuildInputs = [ uchar uutf ];

View File

@ -1,11 +1,13 @@
{ lib, buildDunePackage, fetchzip, cppo }: { lib, buildDunePackage, fetchFromGitHub, cppo }:
buildDunePackage rec { buildDunePackage rec {
version = "1.1"; version = "1.1";
pname = "ocplib-endian"; pname = "ocplib-endian";
src = fetchzip { src = fetchFromGitHub {
url = "https://github.com/OCamlPro/ocplib-endian/archive/${version}.tar.gz"; owner = "OCamlPro";
repo = "ocplib-endian";
rev = version;
sha256 = "sha256-zKsSkhlZBXSqPtw+/WN3pwo9plM9rDZfMbGVfosqb10="; sha256 = "sha256-zKsSkhlZBXSqPtw+/WN3pwo9plM9rDZfMbGVfosqb10=";
}; };

View File

@ -1,4 +1,12 @@
{ stdenv, lib, fetchzip, ocaml, findlib, ocamlbuild, oasis, ocaml_optcomp, camlp4 { stdenv
, lib
, fetchFromGitHub
, ocaml
, findlib
, ocamlbuild
, oasis
, ocaml_optcomp
, camlp4
, num , num
}: }:
@ -19,23 +27,27 @@ let inherit (param) version; in
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "ocsigen-deriving"; pname = "ocsigen-deriving";
inherit version; inherit version;
src = fetchzip {
url = "https://github.com/ocsigen/deriving/archive/${version}.tar.gz"; src = fetchFromGitHub {
owner = "ocsigen";
repo = "deriving";
rev = version;
inherit (param) sha256; inherit (param) sha256;
}; };
buildInputs = [ ocaml findlib ocamlbuild oasis ocaml_optcomp camlp4 ] buildInputs = [ ocaml findlib ocamlbuild oasis ocaml_optcomp camlp4 ]
++ (param.buildInputs or []); ++ (param.buildInputs or [ ]);
createFindlibDestdir = true; createFindlibDestdir = true;
meta = { meta = {
homepage = "https://github.com/ocsigen/deriving"; homepage = "https://github.com/ocsigen/deriving";
description = "Extension to OCaml for deriving functions from type declarations"; description = "Extension to OCaml for deriving functions from type declarations";
license = lib.licenses.mit; license = lib.licenses.mit;
platforms = ocaml.meta.platforms or []; platforms = ocaml.meta.platforms or [ ];
maintainers = with lib.maintainers; [ maintainers = with lib.maintainers; [
gal_bolle vbgl gal_bolle
vbgl
]; ];
}; };

View File

@ -5,7 +5,7 @@
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-ocsigen-start-${version}"; pname = "ocaml${ocaml.version}-ocsigen-start";
version = "4.3.0"; version = "4.3.0";
buildInputs = [ ocaml findlib ]; buildInputs = [ ocaml findlib ];

View File

@ -1,12 +1,14 @@
{ stdenv, lib, fetchurl, fetchpatch, ocaml, findlib, ocamlbuild, camlp4 }: { stdenv, lib, fetchFromGitHub, fetchpatch, ocaml, findlib, ocamlbuild, camlp4 }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "ocaml-optcomp"; pname = "ocaml-optcomp";
version = "1.6"; version = "1.6";
src = fetchurl { src = fetchFromGitHub {
url = "https://github.com/diml/optcomp/archive/${version}.tar.gz"; owner = "diml";
sha256 = "0hhhb2gisah1h22zlg5iszbgqxdd7x85cwd57bd4mfkx9l7dh8jh"; repo = "optcomp";
rev = version;
sha256 = "sha256-UCLYDk19ukraOqVxVlA/rXX81texPPqFgAEqHZ9YEEI=";
}; };
patches = patches =

View File

@ -1,4 +1,4 @@
{lib, buildOcaml, fetchurl, type_conv, pa_ounit}: { lib, buildOcaml, fetchFromGitHub, type_conv, pa_ounit }:
buildOcaml rec { buildOcaml rec {
pname = "pa_bench"; pname = "pa_bench";
@ -6,9 +6,11 @@ buildOcaml rec {
minimumSupportedOcamlVersion = "4.00"; minimumSupportedOcamlVersion = "4.00";
src = fetchurl { src = fetchFromGitHub {
url = "https://github.com/janestreet/pa_bench/archive/${version}.tar.gz"; owner = "janestreet";
sha256 = "1cd6291gdnk6h8ziclg6x3if8z5xy67nfz9gx8sx4k2cwv0j29k5"; repo = "pa_bench";
rev = version;
sha256 = "sha256-WaXB3lgNPHy/z6D7uHxfD5W4HYuTZ+ieRbxxHlPao7c=";
}; };
buildInputs = [ pa_ounit ]; buildInputs = [ pa_ounit ];

View File

@ -1,4 +1,4 @@
{ lib, buildOcaml, ocaml, fetchurl, ounit }: { lib, buildOcaml, ocaml, fetchFromGitHub, ounit }:
if lib.versionAtLeast ocaml.version "4.06" if lib.versionAtLeast ocaml.version "4.06"
then throw "pa_ounit is not available for OCaml ${ocaml.version}" then throw "pa_ounit is not available for OCaml ${ocaml.version}"
@ -8,9 +8,11 @@ buildOcaml rec {
pname = "pa_ounit"; pname = "pa_ounit";
version = "113.00.00"; version = "113.00.00";
src = fetchurl { src = fetchFromGitHub {
url = "https://github.com/janestreet/pa_ounit/archive/${version}.tar.gz"; owner = "janestreet";
sha256 = "0vi0p2hxcrdsl0319c9s8mh9hmk2i4ir6c6vrj8axkc37zkgc437"; repo = "pa_ounit";
rev = version;
sha256 = "sha256-zzXN+mSJtlnQ3e1QoEukCiyfDEoe8cBdkAQ3U1dkvEk=";
}; };
propagatedBuildInputs = [ ounit ]; propagatedBuildInputs = [ ounit ];

View File

@ -1,4 +1,4 @@
{lib, buildOcaml, fetchurl}: { lib, buildOcaml, fetchFromGitHub }:
buildOcaml rec { buildOcaml rec {
pname = "pipebang"; pname = "pipebang";
@ -6,9 +6,11 @@ buildOcaml rec {
minimumSupportedOcamlVersion = "4.00"; minimumSupportedOcamlVersion = "4.00";
src = fetchurl { src = fetchFromGitHub {
url = "https://github.com/janestreet/pipebang/archive/${version}.tar.gz"; owner = "janestreet";
sha256 = "0acm2y8wxvnapa248lkgm0vcc44hlwhrjxqkx1awjxzcmarnxhfk"; repo = "pipebang";
rev = version;
sha256 = "sha256-9A3X/ciL5HtuKQ5awS+hDDBLL5ytOr12wHsmJLNRn+Q=";
}; };
meta = with lib; { meta = with lib; {

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, react, opaline }: { lib, stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, react, opaline }:
if !lib.versionAtLeast ocaml.version "4.04" if !lib.versionAtLeast ocaml.version "4.04"
then throw "reactiveData is not available for OCaml ${ocaml.version}" then throw "reactiveData is not available for OCaml ${ocaml.version}"
@ -8,9 +8,11 @@ stdenv.mkDerivation rec {
pname = "ocaml${ocaml.version}-reactiveData"; pname = "ocaml${ocaml.version}-reactiveData";
version = "0.2.2"; version = "0.2.2";
src = fetchurl { src = fetchFromGitHub {
url = "https://github.com/ocsigen/reactiveData/archive/${version}.tar.gz"; owner = "ocsigen";
sha256 = "0jzagyp4zla28wykvcgqwd8df71ir0vb4s8akp02cfacd5v86sng"; repo = "reactiveData";
rev = version;
sha256 = "sha256-YLkacIbjxZQ/ThgSxjTqviBYih6eW2GX5H7iybQDv1A=";
}; };
buildInputs = [ ocaml findlib ocamlbuild opaline ]; buildInputs = [ ocaml findlib ocamlbuild opaline ];

View File

@ -0,0 +1,47 @@
{ buildPythonPackage
, lib
, cmake
, cppe
, eigen
, python
, pybind11
, numpy
, h5py
, numba
, scipy
, pandas
, polarizationsolver
, pytest
}:
buildPythonPackage rec {
inherit (cppe) pname version src meta;
# The python interface requires eigen3, but builds from a checkout in tree.
# Using the nixpkgs version instead.
postPatch = ''
substituteInPlace setup.py \
--replace "external/eigen3" "${eigen}/include/eigen3"
'';
nativeBuildInputs = [
cmake
eigen
];
dontUseCmakeConfigure = true;
buildInputs = [ pybind11 ];
checkInputs = [
pytest
h5py
numba
numpy
pandas
polarizationsolver
scipy
];
pythonImportsCheck = [ "cppe" ];
}

View File

@ -1,6 +1,5 @@
{ lib { lib
, aiohttp , aiohttp
, asynctest
, buildPythonPackage , buildPythonPackage
, certifi , certifi
, fetchFromGitHub , fetchFromGitHub
@ -9,7 +8,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "crownstone-sse"; pname = "crownstone-sse";
version = "2.0.2"; version = "2.0.3";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -18,20 +17,14 @@ buildPythonPackage rec {
owner = "crownstone"; owner = "crownstone";
repo = "crownstone-lib-python-sse"; repo = "crownstone-lib-python-sse";
rev = version; rev = version;
sha256 = "0rrr92j8pi5annrfa22k1hggsyyacl9asi9i8yrj4jqdjvwjn2gc"; sha256 = "sha256-O1joOH7HCXYCro26p6foMMpg0UXfOgXD0BXuN50OK7U=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
aiohttp aiohttp
asynctest
certifi certifi
]; ];
postPatch = ''
substituteInPlace requirements.txt \
--replace "aiohttp~=3.7.4" "aiohttp>=3.7.4"
'';
# Tests are only providing coverage # Tests are only providing coverage
doCheck = false; doCheck = false;

View File

@ -0,0 +1,20 @@
{ buildPythonPackage, lib, fetchPypi }:
buildPythonPackage rec {
pname = "fields";
version = "5.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-MdSqA9jUTjXfE8Qx3jUTaZfwR6kkpZfYT3vCCeG+Vyc=";
};
pythonImportsCheck = [ "fields" ];
meta = with lib; {
description = "Container class boilerplate killer";
homepage = "https://github.com/ionelmc/python-fields";
license = licenses.bsd2;
maintainers = [ maintainers.sheepforce ];
};
}

View File

@ -8,7 +8,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "flux-led"; pname = "flux-led";
version = "0.24.25"; version = "0.25.1";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -17,7 +17,7 @@ buildPythonPackage rec {
owner = "Danielhiversen"; owner = "Danielhiversen";
repo = "flux_led"; repo = "flux_led";
rev = version; rev = version;
sha256 = "sha256-HhoqsdaqNKdKH63glYEl5mRBFImu6Nxw5gwF7JAJABk="; sha256 = "sha256-+GgA7ma27dah8G/ITsy84jZHpktJHnGSMjzMfAvvuJg=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [

View File

@ -1,6 +1,6 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchFromGitHub
, jupyterhub , jupyterhub
, tornado , tornado
, bash , bash
@ -10,9 +10,14 @@ buildPythonPackage rec {
pname = "jupyterhub-systemdspawner"; pname = "jupyterhub-systemdspawner";
version = "0.15.0"; version = "0.15.0";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "jupyterhub";
sha256 = "b6e2d981657aa5d3794abb89b1650d056524158a3d0f0f706007cae9b6dbeb2b"; repo = "systemdspawner";
# Corresponds to 0.15.0
# Upstream didn't tag the latest release:
# https://github.com/jupyterhub/systemdspawner/issues/89
rev = "7d7cf42db76d9cfa5a4bc42fff14943877ac570b";
sha256 = "sha256-EUCA+CKCeYr+cLVrqTqe3Q32JkbqeALL6tfOnlVHk8Q=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -20,6 +25,8 @@ buildPythonPackage rec {
tornado tornado
]; ];
buildInputs = [ bash ];
postPatch = '' postPatch = ''
substituteInPlace systemdspawner/systemd.py \ substituteInPlace systemdspawner/systemd.py \
--replace "/bin/bash" "${bash}/bin/bash" --replace "/bin/bash" "${bash}/bin/bash"
@ -31,10 +38,16 @@ buildPythonPackage rec {
# no tests # no tests
doCheck = false; doCheck = false;
postInstall = ''
mkdir -p $out/bin
cp check-kernel.bash $out/bin/
patchShebangs $out/bin
'';
meta = with lib; { meta = with lib; {
description = "JupyterHub Spawner using systemd for resource isolation"; description = "JupyterHub Spawner using systemd for resource isolation";
homepage = "https://github.com/jupyterhub/systemdspawner"; homepage = "https://github.com/jupyterhub/systemdspawner";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.costrouc ]; maintainers = with maintainers; [ costrouc erictapen ];
}; };
} }

View File

@ -0,0 +1,38 @@
{ buildPythonPackage
, lib
, fetchFromGitLab
, python
, numpy
, scipy
, periodictable
, fields
}:
buildPythonPackage rec {
pname = "polarizationsolver";
version = "unstable-2021-11-02";
src = fetchFromGitLab {
owner = "reinholdt";
repo = pname;
rev = "00424ac4d1862257a55e4b16543f63ace3fe8c22";
sha256 = "sha256-LACf8Xw+o/uJ3+PD/DE/o7nwKY7fv3NyYbpjCrTTnBU=";
};
propagatedBuildInputs = [
numpy
periodictable
scipy
];
checkInputs = [ fields ];
pythonImportsCheck = [ "polarizationsolver" ];
meta = with lib; {
description = "Multipole moment solver for quantum chemistry and polarisable embedding";
homepage = "https://gitlab.com/reinholdt/polarizationsolver";
license = licenses.gpl3Plus;
maintainers = [ maintainers.sheepforce ];
};
}

View File

@ -1,45 +1,109 @@
{ buildPythonPackage, lib, fetchFromGitHub, libcint, libxc, xcfun, blas { buildPythonPackage
, numpy, scipy, h5py , python3
, lib
, fetchFromGitHub
, cmake
, blas
, libcint
, libxc
, xcfun
, cppe
, h5py
, numpy
, scipy
, nose
, nose-exclude
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyscf"; pname = "pyscf";
version = "1.7.6.post1"; version = "2.0.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pyscf"; owner = "pyscf";
repo = pname; repo = pname;
rev = "f6c9c6654dd9609c5e467a1edd5c2c076f793acc"; rev = "v${version}";
sha256 = "0xbwkjxxysfpqz72qn6n4a0zr2h6sprbcal8j7kzymh7swjy117w"; sha256 = "sha256-nwnhaqSn/9WHBjUPaEabK4x23fJ83WwEYvz6aCcvsDw=";
}; };
# Backport from the 2.0.0 alpha releases of PySCF. # setup.py calls Cmake and passes the arguments in CMAKE_CONFIGURE_ARGS to cmake.
# H5Py > 3.3 deprecates the file modes, that PySCF sets. nativeBuildInputs = [ cmake ];
patches = [ ./h5py.patch ]; dontUseCmakeConfigure = true;
preConfigure = ''
export CMAKE_CONFIGURE_ARGS="-DBUILD_LIBCINT=0 -DBUILD_LIBXC=0 -DBUILD_XCFUN=0"
PYSCF_INC_DIR="${libcint}:${libxc}:${xcfun}";
'';
buildInputs = [ buildInputs = [
blas
libcint libcint
libxc libxc
xcfun xcfun
blas
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
cppe
h5py
numpy numpy
scipy scipy
h5py
]; ];
PYSCF_INC_DIR="${libcint}:${libxc}:${xcfun}"; checkInputs = [ nose nose-exclude ];
doCheck = false;
pythonImportsCheck = [ "pyscf" ]; pythonImportsCheck = [ "pyscf" ];
preCheck = ''
# Set config used by tests to ensure reproducibility
echo 'pbc_tools_pbc_fft_engine = "NUMPY"' > pyscf/pyscf_config.py
export OMP_NUM_THREADS=1
ulimit -s 20000
export PYSCF_CONFIG_FILE=$(pwd)/pyscf/pyscf_config.py
'';
# As defined for the PySCF CI at https://github.com/pyscf/pyscf/blob/master/.github/workflows/run_tests.sh
# minus some additionally numerically instable tests, that are sensitive to BLAS, FFTW, etc.
checkPhase = ''
runHook preCheck
nosetests pyscf/ -v \
--exclude-dir=examples --exclude-dir=pyscf/pbc/grad \
--exclude-dir=pyscf/x2c \
--exclude-dir=pyscf/pbc/tdscf \
-e test_bz \
-e h2o_vdz \
-e test_mc2step_4o4e \
-e test_ks_noimport \
-e test_jk_hermi0 \
-e test_j_kpts \
-e test_k_kpts \
-e high_cost \
-e skip \
-e call_in_background \
-e libxc_cam_beta_bug \
-e test_finite_diff_rks_eph \
-e test_finite_diff_uks_eph \
-e test_pipek \
-e test_n3_cis_ewald \
-I test_kuccsd_supercell_vs_kpts\.py \
-I test_kccsd_ghf\.py \
-I test_h_.*\.py \
--exclude-test=pyscf/pbc/gw/test/test_kgw_slow_supercell.DiamondTestSupercell3 \
--exclude-test=pyscf/pbc/gw/test/test_kgw_slow_supercell.DiamondKSTestSupercell3 \
--exclude-test=pyscf/pbc/gw/test/test_kgw_slow.DiamondTestSupercell3 \
--exclude-test=pyscf/pbc/gw/test/test_kgw_slow.DiamondKSTestSupercell3 \
--exclude-test=pyscf/pbc/tdscf/test/test_krhf_slow_supercell.DiamondTestSupercell3 \
--exclude-test=pyscf/pbc/tdscf/test/test_kproxy_hf.DiamondTestSupercell3 \
--exclude-test=pyscf/pbc/tdscf/test/test_kproxy_ks.DiamondTestSupercell3 \
--exclude-test=pyscf/pbc/tdscf/test/test_kproxy_supercell_hf.DiamondTestSupercell3 \
--exclude-test=pyscf/pbc/tdscf/test/test_kproxy_supercell_ks.DiamondTestSupercell3 \
-I .*_slow.*py -I .*_kproxy_.*py -I test_proxy.py tdscf/*_slow.py gw/*_slow.py
runHook postCheck
'';
meta = with lib; { meta = with lib; {
description = "Python-based simulations of chemistry framework"; description = "Python-based simulations of chemistry framework";
homepage = "https://github.com/pyscf/pyscf"; homepage = "https://github.com/pyscf/pyscf";
license = licenses.asl20; license = licenses.asl20;
platforms = platforms.linux; platforms = platforms.unix;
maintainers = [ maintainers.sheepforce ]; maintainers = [ maintainers.sheepforce ];
}; };
} }

View File

@ -1,13 +0,0 @@
diff --git a/pyscf/lib/misc.py b/pyscf/lib/misc.py
index ed43689ff..a8a0d0e20 100644
--- a/pyscf/lib/misc.py
+++ b/pyscf/lib/misc.py
@@ -42,8 +42,6 @@ if h5py.version.version[:4] == '2.2.':
sys.stderr.write('h5py-%s is found in your environment. '
'h5py-%s has bug in threading mode.\n'
'Async-IO is disabled.\n' % ((h5py.version.version,)*2))
-if h5py.version.version[:2] == '3.':
- h5py.get_config().default_file_mode = 'a'
c_double_p = ctypes.POINTER(ctypes.c_double)
c_int_p = ctypes.POINTER(ctypes.c_int)

View File

@ -5,6 +5,7 @@
, pytestCheckHook , pytestCheckHook
, pandas , pandas
, pytorch , pytorch
, scipy
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -17,7 +18,7 @@ buildPythonPackage rec {
sha256 = "f5d5f7b45f98d155b9c0ba6554fa9770c6b26d5793a3e77a1030fb56910ebeec"; sha256 = "f5d5f7b45f98d155b9c0ba6554fa9770c6b26d5793a3e77a1030fb56910ebeec";
}; };
checkInputs = [ pytestCheckHook pandas pytorch ]; checkInputs = [ pytestCheckHook pandas pytorch scipy ];
meta = with lib; { meta = with lib; {
description = "Wraps tensor-like objects and provides a uniform slicing interface via __getitem__"; description = "Wraps tensor-like objects and provides a uniform slicing interface via __getitem__";

View File

@ -22,6 +22,7 @@
, cudaSupport ? false , cudaSupport ? false
, cudatoolkit , cudatoolkit
, cudnn , cudnn
, patchelfUnstable
, zlib , zlib
, python , python
, keras-applications , keras-applications
@ -78,7 +79,8 @@ in buildPythonPackage {
] ++ lib.optional (!isPy3k) mock ] ++ lib.optional (!isPy3k) mock
++ lib.optionals (pythonOlder "3.4") [ backports_weakref ]; ++ lib.optionals (pythonOlder "3.4") [ backports_weakref ];
nativeBuildInputs = [ wheel ] ++ lib.optional cudaSupport addOpenGLRunpath; # remove patchelfUnstable once patchelf 0.14 with https://github.com/NixOS/patchelf/pull/256 becomes the default
nativeBuildInputs = [ wheel ] ++ lib.optional cudaSupport [ addOpenGLRunpath patchelfUnstable ];
preConfigure = '' preConfigure = ''
unset SOURCE_DATE_EPOCH unset SOURCE_DATE_EPOCH

View File

@ -1,5 +1,5 @@
{ stdenv, bazel_3, buildBazelPackage, isPy3k, lib, fetchFromGitHub, symlinkJoin { stdenv, bazel_3, buildBazelPackage, isPy3k, lib, fetchFromGitHub, symlinkJoin
, addOpenGLRunpath, fetchpatch , addOpenGLRunpath, fetchpatch, patchelfUnstable
# Python deps # Python deps
, buildPythonPackage, pythonOlder, python , buildPythonPackage, pythonOlder, python
# Python libraries # Python libraries
@ -465,7 +465,8 @@ in buildPythonPackage {
tensorflow-tensorboard tensorflow-tensorboard
]; ];
nativeBuildInputs = lib.optional cudaSupport addOpenGLRunpath; # remove patchelfUnstable once patchelf 0.14 with https://github.com/NixOS/patchelf/pull/256 becomes the default
nativeBuildInputs = lib.optional cudaSupport [ addOpenGLRunpath patchelfUnstable ];
postFixup = lib.optionalString cudaSupport '' postFixup = lib.optionalString cudaSupport ''
find $out -type f \( -name '*.so' -or -name '*.so.*' \) | while read lib; do find $out -type f \( -name '*.so' -or -name '*.so.*' \) | while read lib; do

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "patchelf-${version}"; name = "patchelf-${version}";
version = "2020-07-11"; version = "2021-11-16";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "NixOS"; owner = "NixOS";
repo = "patchelf"; repo = "patchelf";
rev = "126372b636733b160e693c9913e871f6755c02e"; rev = "a174cf3006baf31e0e9eaa62bc9adead93af63f7";
sha256 = "07cn40ypys5pyc3jfgxvqj7qk5v6m2rr5brnpmxdsl1557ryx226"; sha256 = "sha256-cKZ4DE70R5XiIqfnIVAl2s7a1bJxaaPpuCmxs3pxFRU=";
}; };
# Drop test that fails on musl (?) # Drop test that fails on musl (?)

View File

@ -33,13 +33,13 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "mame"; pname = "mame";
version = "0.237"; version = "0.238";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mamedev"; owner = "mamedev";
repo = "mame"; repo = "mame";
rev = "mame${builtins.replaceStrings [ "." ] [ "" ] version}"; rev = "mame${builtins.replaceStrings [ "." ] [ "" ] version}";
sha256 = "sha256-0GOzpE8YP32ixz+c4dtDur9K0Szf7cl/dkWzPcJRFAM="; sha256 = "sha256-kh0kvtl+zPJjBWUXyzb/LSbPoJRxh55vUwF2G06tzoo=";
}; };
hardeningDisable = [ "fortify" ]; hardeningDisable = [ "fortify" ];

View File

@ -271,7 +271,7 @@ in rec {
overrides = super: { overrides = super: {
AppKit = lib.overrideDerivation super.AppKit (drv: { AppKit = lib.overrideDerivation super.AppKit (drv: {
__propagatedImpureHostDeps = drv.__propagatedImpureHostDeps ++ [ __propagatedImpureHostDeps = drv.__propagatedImpureHostDeps or [] ++ [
"/System/Library/PrivateFrameworks/" "/System/Library/PrivateFrameworks/"
]; ];
}); });
@ -285,13 +285,13 @@ in rec {
}); });
CoreMedia = lib.overrideDerivation super.CoreMedia (drv: { CoreMedia = lib.overrideDerivation super.CoreMedia (drv: {
__propagatedImpureHostDeps = drv.__propagatedImpureHostDeps ++ [ __propagatedImpureHostDeps = drv.__propagatedImpureHostDeps or [] ++ [
"/System/Library/Frameworks/CoreImage.framework" "/System/Library/Frameworks/CoreImage.framework"
]; ];
}); });
CoreMIDI = lib.overrideDerivation super.CoreMIDI (drv: { CoreMIDI = lib.overrideDerivation super.CoreMIDI (drv: {
__propagatedImpureHostDeps = drv.__propagatedImpureHostDeps ++ [ __propagatedImpureHostDeps = drv.__propagatedImpureHostDeps or [] ++ [
"/System/Library/PrivateFrameworks/" "/System/Library/PrivateFrameworks/"
]; ];
setupHook = ./private-frameworks-setup-hook.sh; setupHook = ./private-frameworks-setup-hook.sh;

View File

@ -7,12 +7,12 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "apache-storm"; pname = "apache-storm";
version = "2.2.0"; version = "2.3.0";
name = "${pname}-${version}"; name = "${pname}-${version}";
src = fetchurl { src = fetchurl {
url = "mirror://apache/storm/${name}/${name}.tar.gz"; url = "mirror://apache/storm/${name}/${name}.tar.gz";
sha256 = "0xc6lfilfkkjyds59b6c770gj21v9srzpln31c9qb3ls6hzic8gn"; sha256 = "sha256-ScIlWyZjPG/ZY5nFIDOeRZ/NopoOfm0Mh3XO/P9sNjY=";
}; };
nativeBuildInputs = [ zip unzip ]; nativeBuildInputs = [ zip unzip ];

View File

@ -5,11 +5,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "pdns-recursor"; pname = "pdns-recursor";
version = "4.5.6"; version = "4.5.7";
src = fetchurl { src = fetchurl {
url = "https://downloads.powerdns.com/releases/pdns-recursor-${version}.tar.bz2"; url = "https://downloads.powerdns.com/releases/pdns-recursor-${version}.tar.bz2";
sha256 = "004jwyg64ww6sfwlfpyfvh6vymildygwkjhkin2fsrq4h79wv2dv"; sha256 = "1avvs1wpck0rahx80xnnaw94hdrfbhi1jdvgg1zpac26mzab4kdd";
}; };
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];

View File

@ -40,17 +40,17 @@ let
in in
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "materialize"; pname = "materialize";
version = "0.9.4"; version = "0.10.0";
rev = "29d003cae5e9d46f8b11b2102ff0b9abf6608c2f"; MZ_DEV_BUILD_SHA = "c14633f59e842fbdd62c7239ffd8c2a16704386e";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "MaterializeInc"; owner = "MaterializeInc";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "021n05csyvza9ifq09qaxypgmlbp3a7xn6r1m4jn8d4rnz38wag6"; sha256 = "06290l2xrryx7bc9g1ffyfjm18a34pa2k410qk9w2p0psqiw2v8d";
}; };
cargoSha256 = "12fysxzmqnx7y7yg6fjcv1952s77d46pwi32vnsv62icgqfpw0j4"; cargoSha256 = "1bxfp6pidiziiq938ah49pa3qr1dhnfnbihp7jxind9qsb3q9gp0";
nativeBuildInputs = [ cmake perl pkg-config ] nativeBuildInputs = [ cmake perl pkg-config ]
# Provides the mig command used by the krb5-src build script # Provides the mig command used by the krb5-src build script
@ -67,8 +67,10 @@ rustPlatform.buildRustPackage rec {
"--exact" "--exact"
"--skip test_client" "--skip test_client"
"--skip test_client_errors" "--skip test_client_errors"
"--skip test_client_all_subjects"
"--skip test_no_block" "--skip test_no_block"
"--skip test_safe_mode" "--skip test_safe_mode"
"--skip test_tls"
]; ];
postPatch = '' postPatch = ''
@ -78,7 +80,6 @@ rustPlatform.buildRustPackage rec {
--replace _Materialize root --replace _Materialize root
''; '';
MZ_DEV_BUILD_SHA = rev;
cargoBuildFlags = [ "--bin materialized" ]; cargoBuildFlags = [ "--bin materialized" ];
postInstall = '' postInstall = ''

View File

@ -28,7 +28,7 @@ md5sum -c gpgkey.asc.md5
gpg --import ./gpgkey.asc gpg --import ./gpgkey.asc
rm gpgkey.asc{,.md5} rm gpgkey.asc{,.md5}
( echo "# Automatically generated by \`$(basename $0)'; do not edit." ; \ ( echo "# Automatically generated by \`$(basename "$0")'; do not edit." ; \
echo "" ; \ echo "" ; \
echo "patch: [" ) \ echo "patch: [" ) \
>> "$PATCH_LIST" >> "$PATCH_LIST"

View File

@ -1,17 +1,23 @@
{ stdenv, lib, fetchFromGitHub, installShellFiles }: { lib
, stdenv
, fetchFromGitHub
, installShellFiles
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "cpufetch"; pname = "cpufetch";
version = "1.00"; version = "1.01";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Dr-Noob"; owner = "Dr-Noob";
repo = "cpufetch"; repo = "cpufetch";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-2Iar7RwL3T4DrFbqKJFys/R+VENRg2lmYFkslEaZeVE="; sha256 = "sha256-vae/59eEDuZUDsTHE93mi+L8WBr3H4zp+mzXg7WWusA=";
}; };
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [
installShellFiles
];
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall

View File

@ -1,32 +1,40 @@
{ lib, stdenv, fetchurl, { lib
openssl, , stdenv
} : , fetchurl
, openssl
, which
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "20210328";
pname = "mbuffer"; pname = "mbuffer";
version = "20211018";
src = fetchurl { src = fetchurl {
url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz"; url = "http://www.maier-komor.de/software/mbuffer/mbuffer-${version}.tgz";
sha256 = "sha256-UbW42EiJkaVf4d/OkBMPnke8HOKGugO09ijAS3hP3F0="; sha256 = "sha256-4kDB5OSsFMKL6MZg7EfUTOFrHo7JKqkHrRMAT/1dtuM=";
}; };
buildInputs = [ openssl ]; buildInputs = [
openssl
which
];
# The mbuffer configure scripts fails to recognize the correct # The mbuffer configure scripts fails to recognize the correct
# objdump binary during cross-building for foreign platforms. # objdump binary during cross-building for foreign platforms.
# The correct objdump is exposed via the environment variable # The correct objdump is exposed via the environment variable
# $OBJDUMP, which should be used in such cases. # $OBJDUMP, which should be used in such cases.
preConfigure = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) '' preConfigure = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
substituteInPlace configure --replace "OBJDUMP=$ac_cv_path_OBJDUMP" 'OBJDUMP=''${OBJDUMP}' substituteInPlace configure \
--replace "OBJDUMP=$ac_cv_path_OBJDUMP" 'OBJDUMP=''${OBJDUMP}'
''; '';
doCheck = true; doCheck = true;
meta = { meta = with lib; {
homepage = "https://www.maier-komor.de/mbuffer.html";
description = "A tool for buffering data streams with a large set of unique features"; description = "A tool for buffering data streams with a large set of unique features";
license = lib.licenses.gpl3Only; homepage = "https://www.maier-komor.de/mbuffer.html";
maintainers = with lib.maintainers; [ tokudan ]; license = licenses.gpl3Only;
platforms = lib.platforms.linux; # Maybe other non-darwin Unix maintainers = with maintainers; [ tokudan ];
platforms = platforms.linux; # Maybe other non-darwin Unix
}; };
} }

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "pspg"; pname = "pspg";
version = "5.4.1"; version = "5.5.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "okbob"; owner = "okbob";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "1pi9dbjhd2mj11p3hx74f3rr8ysriq7sy2x012r0kil3b5xzpv2p"; sha256 = "sha256-zrnmhv+dc2Om1FE5TeoYCOjKGs2+mfMqcaRaTakHxAQ=";
}; };
nativeBuildInputs = [ pkg-config installShellFiles ]; nativeBuildInputs = [ pkg-config installShellFiles ];

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, gettext, libintl, ncurses, openssl { lib, stdenv, fetchurl, fetchpatch, gettext, libintl, ncurses, openssl
, fftw ? null }: , fftw ? null }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -10,6 +10,15 @@ stdenv.mkDerivation rec {
sha256 = "1y7sbgkhgadmd93x1zafqc4yp26ssiv16ni5bbi9vmvvdl55m29y"; sha256 = "1y7sbgkhgadmd93x1zafqc4yp26ssiv16ni5bbi9vmvvdl55m29y";
}; };
patches = [
# Upstream fix for ncurses-6.3.
(fetchpatch {
name = "ncurses-6.3.patch";
url = "https://github.com/folkertvanheusden/HTTPing/commit/4ea9d5b78540c972e3fe1bf44db9f7b3f87c0ad0.patch";
sha256 = "0w3kdkq6c6hz1d9jjnw0ldvd6dy39yamj8haf0hvcyb1sb67qjmp";
})
];
buildInputs = [ fftw libintl ncurses openssl ]; buildInputs = [ fftw libintl ncurses openssl ];
nativeBuildInputs = [ gettext ]; nativeBuildInputs = [ gettext ];

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "exploitdb"; pname = "exploitdb";
version = "2021-11-25"; version = "2021-11-27";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "offensive-security"; owner = "offensive-security";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-kvkbWsdWMxDwMehOUoqccrVMzerPV5F6S0cNm6xrX2E"; sha256 = "sha256-gELHYX1gaNtQtDIyIa3cJOWilf02PknlSyMI4a7pOX4=";
}; };
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];

View File

@ -8,11 +8,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "hashcat"; pname = "hashcat";
version = "6.2.4"; version = "6.2.5";
src = fetchurl { src = fetchurl {
url = "https://hashcat.net/files/hashcat-${version}.tar.gz"; url = "https://hashcat.net/files/hashcat-${version}.tar.gz";
sha256 = "sha256-kCA5b/kzaT4xC0ebZB6G8Xg9mBnWDR2Qd1KtjSSmDDE="; sha256 = "sha256-b2iZ162Jlln3tDpNaAmFQ6tUbSFx+OUdaR0Iplk3iWk=";
}; };
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];

View File

@ -6,15 +6,15 @@
buildGoModule rec { buildGoModule rec {
pname = "verifpal"; pname = "verifpal";
version = "0.26.0"; version = "0.26.1";
src = fetchgit { src = fetchgit {
url = "https://source.symbolic.software/verifpal/verifpal.git"; url = "https://source.symbolic.software/verifpal/verifpal.git";
rev = "v${version}"; rev = "v${version}";
sha256 = "1ag1fpgk4xa5041y6a0pchmh32j876bl0iqjb7lxxqg5nc76d3v1"; sha256 = "sha256-y07RXv2QSyUJpGuFsLJ2sGNo4YzhoCYQr3PkUj4eIOY=";
}; };
vendorSha256 = "XHeXonzRDHXayge5G3apvDarbOfTiV+UQ+IqSbrLkCk="; vendorSha256 = "sha256-gUpgnd/xiLqRNl1bPzVp+0GM/J5GEx0VhUfo6JsX8N8=";
nativeBuildInputs = [ pigeon ]; nativeBuildInputs = [ pigeon ];

View File

@ -1,16 +1,33 @@
{ lib, stdenv, fetchFromGitHub, libx86emu, flex, perl, libuuid }: { lib
, stdenv
, fetchFromGitHub
, flex
, libuuid
, libx86emu
, perl
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "hwinfo"; pname = "hwinfo";
version = "21.76"; version = "21.78";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "opensuse"; owner = "opensuse";
repo = "hwinfo"; repo = "hwinfo";
rev = version; rev = version;
sha256 = "sha256-C0aYEgJC+ITxWcYBLPehNz9J1Y25gS1+UDVc3+7nIKQ="; sha256 = "sha256-uYI7nFwUJwuxAoa6+ZxYcFb3kI2DtxTobgxAetuvemw=";
}; };
nativeBuildInputs = [
flex
];
buildInputs = [
libuuid
libx86emu
perl
];
postPatch = '' postPatch = ''
# VERSION and changelog are usually generated using Git # VERSION and changelog are usually generated using Git
# unless HWINFO_VERSION is defined (see Makefile) # unless HWINFO_VERSION is defined (see Makefile)
@ -22,13 +39,13 @@ stdenv.mkDerivation rec {
substituteInPlace hwinfo.pc.in --replace "prefix=/usr" "prefix=$out" substituteInPlace hwinfo.pc.in --replace "prefix=/usr" "prefix=$out"
''; '';
nativeBuildInputs = [ flex ]; makeFlags = [
buildInputs = [ libx86emu perl libuuid ]; "LIBDIR=/lib"
];
makeFlags = [ "LIBDIR=/lib" ]; installFlags = [
#enableParallelBuilding = true; "DESTDIR=$(out)"
];
installFlags = [ "DESTDIR=$(out)" ];
meta = with lib; { meta = with lib; {
description = "Hardware detection tool from openSUSE"; description = "Hardware detection tool from openSUSE";

View File

@ -1,20 +1,25 @@
{ lib, stdenv, fetchFromGitHub, jre_headless, jdk, ant, saxon }: { lib, stdenv, fetchFromGitHub, jre_headless, jdk, ant, saxon }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
pname = "jing-trang"; pname = "jing-trang";
version = "20151127"; version = "20181222";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "relaxng"; owner = "relaxng";
repo = "jing-trang"; repo = "jing-trang";
rev = "47a0cbdaec2d48824b78a1c19879ac7875509598"; # needed to compile with jdk8 rev = "V${version}";
sha256 = "1hhn52z9mv1x9nyvyqnmzg5yrs2lzm9xac7i15izppv02wp32qha"; sha256 = "sha256-Krupa3MGk5UaaQsaNpPMZuIUzHJytDiksz9ysCPkFS4=";
fetchSubmodules = true;
}; };
buildInputs = [ jdk ant saxon ]; buildInputs = [ jdk ant saxon ];
CLASSPATH = "lib/saxon.jar"; CLASSPATH = "lib/saxon.jar";
patches = [
./no-git-during-build.patch
];
preBuild = "ant"; preBuild = "ant";
installPhase = '' installPhase = ''
@ -32,6 +37,9 @@ stdenv.mkDerivation {
chmod +x "$out"/bin/* chmod +x "$out"/bin/*
''; '';
doCheck = true;
checkPhase = "ant test";
meta = with lib; { meta = with lib; {
description = "A RELAX NG validator in Java"; description = "A RELAX NG validator in Java";
# The homepage is www.thaiopensource.com, but it links to googlecode.com # The homepage is www.thaiopensource.com, but it links to googlecode.com

View File

@ -0,0 +1,47 @@
From db0ed6267f1a85f0785c81b8ee396f74795c77c0 Mon Sep 17 00:00:00 2001
From: Thomas Gerbet <thomas@gerbet.me>
Date: Sat, 27 Nov 2021 10:24:07 +0100
Subject: [PATCH] Do not rely on Git during the build
---
build.xml | 6 ------
build.xsl | 6 ------
2 files changed, 12 deletions(-)
diff --git a/build.xml b/build.xml
index e8ebaed8..2d26c72f 100644
--- a/build.xml
+++ b/build.xml
@@ -431,12 +431,6 @@
<target name="clean"
description="Remove almost all files created during the build process">
<delete dir="${build.dir}"/>
- <exec executable="git">
- <arg value="clean"/>
- <arg value="-d"/>
- <arg value="--force"/>
- <arg value="${doc.dir}"/>
- </exec>
</target>
<target name="realclean" depends="clean"
diff --git a/build.xsl b/build.xsl
index fb9f3fef..fa384a27 100644
--- a/build.xsl
+++ b/build.xsl
@@ -23,12 +23,6 @@
<target name="dummy"/>
<target name="init">
<mkdir dir="{$build}"/>
- <exec executable="git">
- <arg value="submodule"/>
- <arg value="update"/>
- <arg value="--init"/>
- <arg value="--recursive"/>
- </exec>
<copy todir="{$doc}">
<fileset dir="relaxng.org/jclark" includes="**"/>
</copy>
--
2.34.1

View File

@ -1,2 +1,2 @@
source 'https://rubygems.org' source 'https://rubygems.org'
gem 'nokogiri', '~> 1.8.0' gem 'nokogiri', '~> 1.11.7'

View File

@ -1,15 +1,38 @@
PATH
remote: .
specs:
docbookrx (1.0.0.dev)
nokogiri (~> 1.11.7)
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
mini_portile2 (2.3.0) diff-lcs (1.4.4)
nokogiri (1.8.5) nokogiri (1.11.7-x86_64-linux)
mini_portile2 (~> 2.3.0) racc (~> 1.4)
racc (1.6.0)
rake (13.0.6)
rspec (3.9.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.9.0)
rspec-core (3.9.3)
rspec-support (~> 3.9.3)
rspec-expectations (3.9.4)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-mocks (3.9.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.4)
PLATFORMS PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
nokogiri (~> 1.8.0) docbookrx!
rake (~> 13.0.0)
rspec (~> 3.9.0)
BUNDLED WITH BUNDLED WITH
2.1.4 2.2.24

View File

@ -3,7 +3,6 @@
, stdenv , stdenv
, ruby , ruby
, bundlerEnv , bundlerEnv
# , libxml2
}: }:
let let
@ -13,10 +12,6 @@ let
inherit ruby; inherit ruby;
# buildInputs = [
# libxml2
# ];
gemfile = ./Gemfile; gemfile = ./Gemfile;
lockfile = ./Gemfile.lock; lockfile = ./Gemfile.lock;
gemset = ./gemset.nix; gemset = ./gemset.nix;
@ -25,15 +20,15 @@ let
in stdenv.mkDerivation { in stdenv.mkDerivation {
pname = "docbookrx"; pname = "docbookrx";
version = "unstable-2018-05-02"; version = "unstable-2018-05-18";
buildInputs = [ env.wrappedRuby ]; buildInputs = [ env.wrappedRuby ];
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "asciidoctor"; owner = "asciidoctor";
repo = "docbookrx"; repo = "docbookrx";
rev = "682d8c2f7a9e1e6f546c5f7d0067353621c68a7a"; rev = "83d1d1235e3bb44506123eda337780a912581cd0";
sha256 = "07jilh17gj8xx4ps4ln787izmhv8xwwwv6fkqqg3pwjni5qikx7w"; sha256 = "sha256-OdPRh7ZIhgM7hs5qPiuxLEUuMEtaXcgZ83M6i6CV6AY=";
}; };
# TODO: I don't know ruby packaging but this does the trick for now # TODO: I don't know ruby packaging but this does the trick for now

View File

@ -1,23 +1,107 @@
{ {
mini_portile2 = { diff-lcs = {
groups = ["default"]; groups = ["default" "development"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "13d32jjadpjj6d2wdhkfpsmy68zjx90p49bgf8f7nkpz86r1fr11"; sha256 = "0m925b8xc6kbpnif9dldna24q1szg4mk0fvszrki837pfn46afmz";
type = "gem"; type = "gem";
}; };
version = "2.3.0"; version = "1.4.4";
};
docbookrx = {
dependencies = ["nokogiri"];
groups = ["default"];
platforms = [];
source = {
path = ./.;
type = "path";
};
version = "1.0.0.dev";
}; };
nokogiri = { nokogiri = {
dependencies = ["mini_portile2"]; dependencies = ["racc"];
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0byyxrazkfm29ypcx5q4syrv126nvjnf7z6bqi01sqkv4llsi4qz"; sha256 = "4976a9c9e796527d51dc6c311b9bd93a0233f6a7962a0f569aa5c782461836ef";
type = "gem"; type = "gem";
}; };
version = "1.8.5"; version = "1.11.7";
};
racc = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0la56m0z26j3mfn1a9lf2l03qx1xifanndf9p3vx1azf6sqy7v9d";
type = "gem";
};
version = "1.6.0";
};
rake = {
groups = ["development"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "15whn7p9nrkxangbs9hh75q585yfn66lv0v2mhj6q6dl6x8bzr2w";
type = "gem";
};
version = "13.0.6";
};
rspec = {
dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"];
groups = ["development"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1hzsig4pi9ybr0xl5540m1swiyxa74c8h09225y5sdh2rjkkg84h";
type = "gem";
};
version = "3.9.0";
};
rspec-core = {
dependencies = ["rspec-support"];
groups = ["default" "development"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0b8891149l4rdlaz58k1dprc09rhpvq98bblk4qpd3dvcvqklkvh";
type = "gem";
};
version = "3.9.3";
};
rspec-expectations = {
dependencies = ["diff-lcs" "rspec-support"];
groups = ["default" "development"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0gjqa3h4r8jna8dh22al4f6ks4x6l4knshx2b8jygkd1gk68n92q";
type = "gem";
};
version = "3.9.4";
};
rspec-mocks = {
dependencies = ["diff-lcs" "rspec-support"];
groups = ["default" "development"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "19vmdqym1v2g1zbdnq37zwmyj87y9yc9ijwc8js55igvbb9hx0mr";
type = "gem";
};
version = "3.9.1";
};
rspec-support = {
groups = ["default" "development"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0ig6wk1ln6wy0d6fjlbfwxibps1nidc6111fcnm0jfa1z5nkqczl";
type = "gem";
};
version = "3.9.4";
}; };
} }

View File

@ -550,6 +550,7 @@ mapAliases ({
minergate = throw "minergate has been removed from nixpkgs, because the package is unmaintained and the site has a bad reputation"; # added 2021-08-13 minergate = throw "minergate has been removed from nixpkgs, because the package is unmaintained and the site has a bad reputation"; # added 2021-08-13
minergate-cli = throw "minergatecli has been removed from nixpkgs, because the package is unmaintained and the site has a bad reputation"; # added 2021-08-13 minergate-cli = throw "minergatecli has been removed from nixpkgs, because the package is unmaintained and the site has a bad reputation"; # added 2021-08-13
minetime = throw "minetime has been removed from nixpkgs, because it was discontinued 2021-06-22"; # added 2021-10-14 minetime = throw "minetime has been removed from nixpkgs, because it was discontinued 2021-06-22"; # added 2021-10-14
monero = monero-cli; # added 2021-11-28
mopidy-gmusic = throw "mopidy-gmusic has been removed because Google Play Music was discontinued"; # added 2021-03-07 mopidy-gmusic = throw "mopidy-gmusic has been removed because Google Play Music was discontinued"; # added 2021-03-07
mopidy-local-images = throw "mopidy-local-images has been removed as it's unmaintained. Its functionality has been merged into the mopidy-local extension."; # added 2020-10-18 mopidy-local-images = throw "mopidy-local-images has been removed as it's unmaintained. Its functionality has been merged into the mopidy-local extension."; # added 2020-10-18
mopidy-local-sqlite = throw "mopidy-local-sqlite has been removed as it's unmaintained. Its functionality has been merged into the mopidy-local extension."; # added 2020-10-18 mopidy-local-sqlite = throw "mopidy-local-sqlite has been removed as it's unmaintained. Its functionality has been merged into the mopidy-local extension."; # added 2020-10-18

View File

@ -15968,6 +15968,8 @@ with pkgs;
ctpl = callPackage ../development/libraries/ctpl { }; ctpl = callPackage ../development/libraries/ctpl { };
cppe = callPackage ../development/libraries/science/chemistry/cppe { };
cppdb = callPackage ../development/libraries/cppdb { }; cppdb = callPackage ../development/libraries/cppdb { };
cpp-utilities = callPackage ../development/libraries/cpp-utilities { }; cpp-utilities = callPackage ../development/libraries/cpp-utilities { };
@ -25538,6 +25540,8 @@ with pkgs;
lollypop = callPackage ../applications/audio/lollypop { }; lollypop = callPackage ../applications/audio/lollypop { };
losslessaudiochecker = callPackage ../applications/audio/losslessaudiochecker { };
m32edit = callPackage ../applications/audio/midas/m32edit.nix {}; m32edit = callPackage ../applications/audio/midas/m32edit.nix {};
manim = python3Packages.callPackage ../applications/video/manim { manim = python3Packages.callPackage ../applications/video/manim {
@ -29697,8 +29701,6 @@ with pkgs;
dcrd = callPackage ../applications/blockchains/dcrd { }; dcrd = callPackage ../applications/blockchains/dcrd { };
dcrwallet = callPackage ../applications/blockchains/dcrwallet { }; dcrwallet = callPackage ../applications/blockchains/dcrwallet { };
dero = callPackage ../applications/blockchains/dero { boost = boost165; };
digibyte = libsForQt514.callPackage ../applications/blockchains/digibyte { withGui = true; }; digibyte = libsForQt514.callPackage ../applications/blockchains/digibyte { withGui = true; };
digibyted = callPackage ../applications/blockchains/digibyte { withGui = false; }; digibyted = callPackage ../applications/blockchains/digibyte { withGui = false; };
@ -29760,16 +29762,16 @@ with pkgs;
lndmanage = callPackage ../applications/blockchains/lndmanage { }; lndmanage = callPackage ../applications/blockchains/lndmanage { };
monero = callPackage ../applications/blockchains/monero { monero-cli = callPackage ../applications/blockchains/monero-cli {
inherit (darwin.apple_sdk.frameworks) CoreData IOKit PCSC; inherit (darwin.apple_sdk.frameworks) CoreData IOKit PCSC;
boost = boost17x; boost = boost17x;
}; };
oxen = callPackage ../applications/blockchains/oxen { monero-gui = libsForQt5.callPackage ../applications/blockchains/monero-gui {
boost = boost17x; boost = boost17x;
}; };
monero-gui = libsForQt5.callPackage ../applications/blockchains/monero-gui { oxen = callPackage ../applications/blockchains/oxen {
boost = boost17x; boost = boost17x;
}; };
@ -31865,7 +31867,9 @@ with pkgs;
gap-full = lowPrio (gap.override { packageSet = "full"; }); gap-full = lowPrio (gap.override { packageSet = "full"; });
geogebra = callPackage ../applications/science/math/geogebra { }; geogebra = callPackage ../applications/science/math/geogebra { };
geogebra6 = callPackage ../applications/science/math/geogebra/geogebra6.nix { }; geogebra6 = callPackage ../applications/science/math/geogebra/geogebra6.nix {
electron = electron_12;
};
maxima = callPackage ../applications/science/math/maxima { maxima = callPackage ../applications/science/math/maxima {
ecl = null; ecl = null;
@ -32443,12 +32447,6 @@ with pkgs;
mame = libsForQt514.callPackage ../misc/emulators/mame { mame = libsForQt514.callPackage ../misc/emulators/mame {
inherit (darwin.apple_sdk.frameworks) CoreAudioKit ForceFeedback; inherit (darwin.apple_sdk.frameworks) CoreAudioKit ForceFeedback;
# TODO: remove it on mame 0.238
stdenv =
if stdenv.cc.isClang then
overrideCC stdenv clang_6
else
stdenv;
}; };
martyr = callPackage ../development/libraries/martyr { }; martyr = callPackage ../development/libraries/martyr { };

View File

@ -565,6 +565,7 @@ lib.makeScope pkgs.newScope (self: with self; {
buildInputs = [ libxml2 ]; buildInputs = [ libxml2 ];
internalDeps = [ php.extensions.dom ]; internalDeps = [ php.extensions.dom ];
NIX_CFLAGS_COMPILE = [ "-I../.." "-DHAVE_DOM" ]; NIX_CFLAGS_COMPILE = [ "-I../.." "-DHAVE_DOM" ];
doCheck = false;
configureFlags = [ "--enable-xmlreader" ] configureFlags = [ "--enable-xmlreader" ]
# Required to build on darwin. # Required to build on darwin.
++ lib.optionals (lib.versionOlder php.version "7.4") [ "--with-libxml-dir=${libxml2.dev}" ]; ++ lib.optionals (lib.versionOlder php.version "7.4") [ "--with-libxml-dir=${libxml2.dev}" ];

View File

@ -1769,6 +1769,10 @@ in {
cozy = callPackage ../development/python-modules/cozy { }; cozy = callPackage ../development/python-modules/cozy { };
cppe = callPackage ../development/python-modules/cppe {
cppe = pkgs.cppe;
};
cppheaderparser = callPackage ../development/python-modules/cppheaderparser { }; cppheaderparser = callPackage ../development/python-modules/cppheaderparser { };
cppy = callPackage ../development/python-modules/cppy { }; cppy = callPackage ../development/python-modules/cppy { };
@ -2703,6 +2707,8 @@ in {
fido2 = callPackage ../development/python-modules/fido2 { }; fido2 = callPackage ../development/python-modules/fido2 { };
fields = callPackage ../development/python-modules/fields { };
filebrowser_safe = callPackage ../development/python-modules/filebrowser_safe { }; filebrowser_safe = callPackage ../development/python-modules/filebrowser_safe { };
filebytes = callPackage ../development/python-modules/filebytes { }; filebytes = callPackage ../development/python-modules/filebytes { };
@ -5943,6 +5949,8 @@ in {
poezio = callPackage ../applications/networking/instant-messengers/poezio { }; poezio = callPackage ../applications/networking/instant-messengers/poezio { };
polarizationsolver = callPackage ../development/python-modules/polarizationsolver { };
polib = callPackage ../development/python-modules/polib { }; polib = callPackage ../development/python-modules/polib { };
policy-sentry = callPackage ../development/python-modules/policy-sentry { }; policy-sentry = callPackage ../development/python-modules/policy-sentry { };
@ -9229,15 +9237,15 @@ in {
tensorflow-bin = callPackage ../development/python-modules/tensorflow/bin.nix { tensorflow-bin = callPackage ../development/python-modules/tensorflow/bin.nix {
cudaSupport = pkgs.config.cudaSupport or false; cudaSupport = pkgs.config.cudaSupport or false;
cudatoolkit = pkgs.cudatoolkit_11_0; cudatoolkit = pkgs.cudatoolkit_11_2;
cudnn = pkgs.cudnn_cudatoolkit_11_0; cudnn = pkgs.cudnn_cudatoolkit_11_2;
}; };
tensorflow-build = callPackage ../development/python-modules/tensorflow { tensorflow-build = callPackage ../development/python-modules/tensorflow {
inherit (pkgs.darwin) cctools; inherit (pkgs.darwin) cctools;
cudaSupport = pkgs.config.cudaSupport or false; cudaSupport = pkgs.config.cudaSupport or false;
cudatoolkit = pkgs.cudatoolkit_11_0; cudatoolkit = pkgs.cudatoolkit_11_2;
cudnn = pkgs.cudnn_cudatoolkit_11_0; cudnn = pkgs.cudnn_cudatoolkit_11_2;
nccl = pkgs.nccl_cudatoolkit_11; nccl = pkgs.nccl_cudatoolkit_11;
inherit (pkgs.darwin.apple_sdk.frameworks) Foundation Security; inherit (pkgs.darwin.apple_sdk.frameworks) Foundation Security;
flatbuffers-core = pkgs.flatbuffers; flatbuffers-core = pkgs.flatbuffers;