lol

Merge pull request #110857 from SuperSandro2000/fix-collection6

authored by

Sandro and committed by
GitHub
41d270c2 f6d29634

+74 -47
+1 -1
pkgs/applications/audio/artyFX/default.nix
··· 8 8 src = fetchFromGitHub { 9 9 owner = "openAVproductions"; 10 10 repo = "openAV-ArtyFX"; 11 - rev = "492587461b50d140455aa3c98d915eb8673bebf0"; 11 + rev = "8c542627d936a01b1d97825e7f26a8e95633f7aa"; 12 12 sha256 = "0wwg8ivnpyy0235bapjy4g0ij85zq355jwi6c1nkrac79p4z9ail"; 13 13 }; 14 14
+3 -3
pkgs/applications/misc/usync/default.nix
··· 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ebzzry"; 9 - repo = pname; 10 - rev = "9c87ea8a707a47c3d7f6ef94d07591c5ab594282"; 11 - sha256 = "1r05gw041fz9dkkb70zd6kqw9dd8dhpv87407qxqg43pd7x47kf4"; 9 + repo = "usync"; 10 + rev = "99f11b0c196a81843f55ca3456abcb85149b6d51"; 11 + sha256 = "16i1q8f0jmfd43rb8d70l2b383vr5ib4kh7iq3yd345q7xjz9c2j"; 12 12 }; 13 13 14 14 installPhase = ''
+14 -11
pkgs/applications/office/paperless/python-modules/django-crispy-forms.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub 2 - , pytest_4, pytest-django, django }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + , pytest-django 6 + , django 7 + }: 3 8 4 - buildPythonPackage { 9 + buildPythonPackage rec { 5 10 pname = "django-crispy-forms"; 6 - version = "2019.04.21"; 11 + version = "1.10.0"; 7 12 8 13 src = fetchFromGitHub { 9 14 owner = "django-crispy-forms"; 10 15 repo = "django-crispy-forms"; 11 - rev = "e25a5326697e5b545689b3a914e516404a6911bb"; 12 - sha256 = "12zqa76q6i7j47aqvhilivpbdplgp9zw2q8zfcjzlgclrqafaj39"; 16 + rev = version; 17 + sha256 = "0y6kskfxgckb9npcgwx4zrs5n9px159zh9zhinhxi3i7wlriqpf5"; 13 18 }; 14 19 15 20 # For reasons unknown, the source dir must contain a dash ··· 19 24 export sourceRoot=source- 20 25 ''; 21 26 22 - checkInputs = [ pytest_4 pytest-django django ]; 27 + checkInputs = [ django pytest-django pytestCheckHook ]; 23 28 24 - checkPhase = '' 25 - PYTHONPATH="$(pwd):$PYTHONPATH" \ 26 - DJANGO_SETTINGS_MODULE=crispy_forms.tests.test_settings \ 27 - pytest crispy_forms/tests 29 + preCheck = '' 30 + export DJANGO_SETTINGS_MODULE=crispy_forms.tests.test_settings 28 31 ''; 29 32 30 33 meta = with lib; {
+25 -9
pkgs/applications/radio/gnuradio/ais.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkg-config, boost, gnuradio 2 - , makeWrapper, cppunit, gr-osmosdr, log4cpp 3 - , pythonSupport ? true, python, swig 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , pkg-config 6 + , boost 7 + , gnuradio 8 + , makeWrapper 9 + , cppunit 10 + , gr-osmosdr 11 + , log4cpp 12 + , pythonSupport ? true 13 + , python 14 + , swig 15 + , fetchpatch 4 16 }: 5 - 6 - assert pythonSupport -> python != null && swig != null; 7 17 8 18 stdenv.mkDerivation { 9 19 pname = "gr-ais"; ··· 12 22 src = fetchFromGitHub { 13 23 owner = "bistromath"; 14 24 repo = "gr-ais"; 15 - # Upstream PR: https://github.com/bistromath/gr-ais/commit/8502d0252a2a1a9b8d1a71795eaeb5d820684054 16 - rev = "8502d0252a2a1a9b8d1a71795eaeb5d820684054"; 17 - sha256 = "1b9j0kc74cw12a7jv4lii77dgzqzg2s8ndzp4xmisxksgva1qfvh"; 25 + rev = "cdc1f52745853f9c739c718251830eb69704b26e"; 26 + sha256 = "1vl3kk8xr2mh5lf31zdld7yzmwywqffffah8iblxdzblgsdwxfl6"; 18 27 }; 19 28 29 + patches = [ 30 + (fetchpatch { 31 + url = "https://github.com/bistromath/gr-ais/commit/8502d0252a2a1a9b8d1a71795eaeb5d820684054.patch"; 32 + sha256 = "1cwalphldvf6dbhzwz1gi53z0cb4921qsvlz4138q7m6dxccvssg"; 33 + }) 34 + ]; 35 + 20 36 nativeBuildInputs = [ cmake makeWrapper pkg-config ]; 21 37 buildInputs = [ boost gnuradio cppunit gr-osmosdr log4cpp ] 22 - ++ lib.optionals pythonSupport [ python swig ]; 38 + ++ lib.optionals pythonSupport [ python swig ]; 23 39 24 40 postInstall = '' 25 41 for prog in "$out"/bin/*; do
+1
pkgs/data/fonts/myrica/default.nix
··· 5 5 6 6 owner = "tomokuni"; 7 7 repo = "Myrica"; 8 + # commit does not exist on any branch on the target repository 8 9 rev = "b737107723bfddd917210f979ccc32ab3eb6dc20"; 9 10 sha256 = "187rklcibbkai6m08173ca99qn8v7xpdfdv0izpymmavj85axm12"; 10 11
+5 -3
pkgs/data/fonts/siji/default.nix
··· 1 - { lib, stdenv, fetchzip, libfaketime, fonttosfnt, mkfontscale }: 1 + { lib, stdenv, fetchFromGitHub, libfaketime, fonttosfnt, mkfontscale }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "siji-${version}"; 5 5 version = "2016-05-13"; 6 6 7 - src = fetchzip { 8 - url = "https://github.com/stark/siji/archive/95369afac3e661cb6d3329ade5219992c88688c1.zip"; 7 + src = fetchFromGitHub { 8 + owner = "stark"; 9 + repo = "siji"; 10 + rev = "3cbb7fe938c33aaadbb657803ea5946e5157d6e2"; 9 11 sha256 = "1408g4nxwdd682vjqpmgv0cp0bfnzzzwls62cjs9zrds16xa9dpf"; 10 12 }; 11 13
+2 -2
pkgs/development/python-modules/greatfet/default.nix
··· 1 1 { lib, fetchFromGitHub, buildPythonPackage, isPy3k, future, pyusb, ipython, pygreat }: 2 2 3 - buildPythonPackage { 3 + buildPythonPackage rec { 4 4 pname = "GreatFET"; 5 5 version = "2019.5.1.dev0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "greatscottgadgets"; 9 9 repo = "greatfet"; 10 - rev = "a927f21d59ccface00635146103a807c1d2b0ad8"; 10 + rev = "v${version}"; 11 11 sha256 = "054vkx4xkbhxhh5grjbs9kw3pjkv1zapp91ysrqr0c8mg1pc7zxv"; 12 12 }; 13 13
+1 -1
pkgs/development/python-modules/nmigen-soc/default.nix
··· 15 15 src = fetchFromGitHub { 16 16 owner = "nmigen"; 17 17 repo = "nmigen-soc"; 18 - rev = "f1b009c7e075bca461d10ec963a7eaa3bf4dfc14"; 18 + rev = "f5b5cd563e8e8d081b0535c4554c02b5456ee8b4"; 19 19 sha256 = "04kjaq9qp6ac3h0r1wlb4jyz56bb52l1rikmz1x7azvnr10xhrad"; 20 20 }; 21 21
+2 -2
pkgs/development/tools/database/pyrseas/default.nix
··· 1 1 { lib, pythonPackages, fetchFromGitHub }: 2 2 3 3 let 4 - pgdbconn = pythonPackages.buildPythonPackage { 4 + pgdbconn = pythonPackages.buildPythonPackage rec { 5 5 pname = "pgdbconn"; 6 6 version = "0.8.0"; 7 7 src = fetchFromGitHub { 8 8 owner = "perseas"; 9 9 repo = "pgdbconn"; 10 - rev = "26c1490e4f32e4b5b925e5b82014ad106ba5b057"; 10 + rev = "v${version}"; 11 11 sha256 = "09r4idk5kmqi3yig7ip61r6js8blnmac5n4q32cdcbp1rcwzdn6z"; 12 12 }; 13 13 # The tests are impure (they try to access a PostgreSQL server)
+2 -2
pkgs/development/tools/trellis/default.nix
··· 13 13 14 14 srcs = [ 15 15 (fetchFromGitHub { 16 - owner = "SymbiFlow"; 16 + owner = "YosysHQ"; 17 17 repo = "prjtrellis"; 18 18 rev = "60c05b3f4e71fd78d4fba5c31f9974694245199e"; 19 19 sha256 = "1k37mxwxv9fpm6xnrxlqqap7zqh2dvgqncphj3asi2rz0kh07ppf"; ··· 21 21 }) 22 22 23 23 (fetchFromGitHub { 24 - owner = "SymbiFlow"; 24 + owner = "YosysHQ"; 25 25 repo = "prjtrellis-db"; 26 26 rev = "2cf058e7a3ba36134d21e34823e9b2ecaaceac2c"; 27 27 sha256 = "1hjaw5jkwiaiznm2z0smy88m2cdz63cd51z4nibajfih7ikvkj6g";
+1
pkgs/games/openmw/default.nix
··· 6 6 src = fetchFromGitHub { 7 7 owner = "OpenMW"; 8 8 repo = "osg"; 9 + # commit does not exist on any branch on the target repository 9 10 rev = "1556cd7966ebc1c80b6626988d2b25fb43a744cf"; 10 11 sha256 = "0d74hijzmj82nx3jkv5qmr3pkgvplra0b8fbjx1y3vmzxamb0axd"; 11 12 };
+1
pkgs/games/openra/mods.nix
··· 123 123 src = fetchFromGitHub { 124 124 owner = "IceReaper"; 125 125 repo = "OpenRA" ; 126 + # commit does not exist on any branch on the target repository 126 127 rev = "4e8eab4ca00d1910203c8a103dfd2c002714daa8"; 127 128 sha256 = "1yyqparf93x8yzy1f46gsymgkj5jls25v2yc7ighr3f7mi3igdvq"; 128 129 name = "engine";
+4 -2
pkgs/games/snipes/default.nix
··· 13 13 src = fetchFromGitHub { 14 14 owner = "Davidebyzero"; 15 15 repo = "Snipes"; 16 - rev = "343e14104b7848eb1f882401888e685b7918ef9f"; 17 - sha256 = "1rl70d5miak34warbwfv27z11vln4lvf7maqqc78z0gdc5zivdv2"; 16 + rev = "594af45108e07aa4159c3babc9b5e53609c3fd6e"; 17 + sha256 = "0gmh38swm74jmljy0bq27ipqzb4h8y9rzwc1j6harbd9qqz5knac"; 18 18 }; 19 19 20 20 postPatch = '' 21 21 substitute config-sample.h config.h \ 22 22 --replace SnipesConsole.ttf $out/share/snipes/SnipesConsole.ttf 23 + substituteInPlace GNUmakefile \ 24 + --replace 'CFLAGS=-Werror -Wall' 'CFLAGS=-Wall' 23 25 ''; 24 26 25 27 enableParallelBuilding = true;
+2 -2
pkgs/misc/emulators/retroarch/cores.nix
··· 925 925 src = fetchFromGitHub { 926 926 owner = "snes9xgit"; 927 927 repo = core; 928 - rev = "6db918cfe32b157239da44096091c212fdfb3b60"; 929 - sha256 = "0y3jhy50qdhhfglybys9m0fgk9r24ksdcgv5iqpyxy5a4cjvhv8j"; 928 + rev = "bd9246ddd75a5e9f78d6189c8c57754d843630f7"; 929 + sha256 = "10fm7ah3aha9lf4k9hgw0dlhdvshzpig2d0ylcb12gf9zz0i22ns"; 930 930 }; 931 931 description = "Port of SNES9x git to libretro"; 932 932 license = "Non-commercial";
+2 -2
pkgs/os-specific/linux/acpi-call/default.nix
··· 7 7 src = fetchFromGitHub { 8 8 owner = "nix-community"; 9 9 repo = "acpi_call"; 10 - rev = "3d7c9fe5ed3fc5ed5bafd39d54b1fdc7a09ce710"; 11 - sha256 = "09kp8zl392h99wjwzqrdw2xcfnsc944hzmfwi8n1y7m2slpdybv3"; 10 + rev = "fe4cd0124099b88b61f83006023bc0d95e742e75"; 11 + sha256 = "1rksbg78i7y2wzam9p6kbhx8rmkaiq0kqg8nj7k0j6d25m79289s"; 12 12 }; 13 13 14 14 hardeningDisable = [ "pic" ];
+1
pkgs/os-specific/linux/kernel/linux-testing-bcachefs.nix
··· 7 7 src = fetchFromGitHub { 8 8 owner = "koverstreet"; 9 9 repo = "bcachefs"; 10 + # commit does not exist on any branch on the target repository 10 11 rev = "6a505b63ed3003faf5000f19fd08bbd477d93fbc"; 11 12 sha256 = "1rf34gzv9npafp1c3i6lymk3b0gnqp4rb0wl33pw6yrpgnsry3cc"; 12 13 };
+1
pkgs/os-specific/linux/rtlwifi_new/default.nix
··· 12 12 src = fetchFromGitHub { 13 13 owner = "rtlwifi-linux"; 14 14 repo = "rtlwifi_new"; 15 + # commit does not exist on any branch on the target repository 15 16 rev = "a108e3de87c2ed30b71c3c4595b79ab7a2f9e348"; 16 17 sha256 = "15kjs9i9vvmn1cdzccd5cljf3m45r4ssm65klkj2fdkf3kljj38k"; 17 18 };
+6 -7
pkgs/tools/misc/hdl-dump/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchFromGitHub 3 4 , upx 4 5 }: 5 6 6 - let 7 + stdenv.mkDerivation rec { 8 + pname = "hdl-dump"; 7 9 version = "20202807"; 8 - pname = "hdl-dump"; 9 - in stdenv.mkDerivation { 10 - inherit pname version; 11 10 12 11 # Using AkuHAK's repo because playstation2's repo is outdated 13 12 src = fetchFromGitHub { 14 13 owner = "AKuHAK"; 15 14 repo = pname; 16 - rev = "be37e112a44772a1341c867dc3dfee7381ce9e59"; 17 - sha256 = "0akxak6hm11h8z6jczxgr795s4a8czspwnhl3swqxp803dvjdx41"; 15 + rev = "0c98b235c83c0fca1da93648f05ea5f940a4aee0"; 16 + sha256 = "1s3wflqjjlcslpa9n5chr8dbamhmfk88885dzw68apz4vf6g27iq"; 18 17 }; 19 18 20 19 buildInputs = [ upx ];