Merge master into staging-next

This commit is contained in:
github-actions[bot] 2023-03-23 12:01:03 +00:00 committed by GitHub
commit d6eaead385
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 1226 additions and 956 deletions

View File

@ -19,6 +19,12 @@ buildPythonPackage rec {
hash = "sha256-LACf8Xw+o/uJ3+PD/DE/o7nwKY7fv3NyYbpjCrTTnBU=";
};
# setup.py states version="dev", which is not a valid version string for setuptools
# There has never been a formal stable release, so let's say 0.0 here.
postPatch = ''
substituteInPlace ./setup.py --replace 'version="dev",' 'version="0.0",'
'';
propagatedBuildInputs = [
numpy
periodictable

View File

@ -18,7 +18,7 @@
}:
stdenv.mkDerivation (finalAttrs: {
version = "5.4.3";
version = "5.4.4";
pname = "rocminfo";
src = fetchFromGitHub {

View File

@ -9,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "outline";
version = "0.67.2";
version = "0.68.1";
src = fetchFromGitHub {
owner = "outline";
repo = "outline";
rev = "v${version}";
sha256 = "sha256-O5t//UwF+AVFxeBQHRIZM5RSf4+DgUE5LHWVRKxJLfc=";
sha256 = "sha256-pln3cdozZPEodfXeUtTbBvhHb5yqE4uu0VKA95Zv6ro=";
};
nativeBuildInputs = [ makeWrapper yarn2nix-moretea.fixup_yarn_lock ];

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff