lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
11b87cbe da03c8fb

+1243 -505
+43 -5
lib/attrsets.nix
··· 5 5 6 6 let 7 7 inherit (builtins) head length; 8 - inherit (lib.trivial) mergeAttrs warn; 8 + inherit (lib.trivial) isInOldestRelease mergeAttrs warn warnIf; 9 9 inherit (lib.strings) concatStringsSep concatMapStringsSep escapeNixIdentifier sanitizeDerivationName; 10 10 inherit (lib.lists) foldr foldl' concatMap elemAt all partition groupBy take foldl; 11 11 in ··· 885 885 # Type 886 886 887 887 ``` 888 - cartesianProductOfSets :: AttrSet -> [AttrSet] 888 + cartesianProduct :: AttrSet -> [AttrSet] 889 889 ``` 890 890 891 891 # Examples 892 892 :::{.example} 893 - ## `lib.attrsets.cartesianProductOfSets` usage example 893 + ## `lib.attrsets.cartesianProduct` usage example 894 894 895 895 ```nix 896 - cartesianProductOfSets { a = [ 1 2 ]; b = [ 10 20 ]; } 896 + cartesianProduct { a = [ 1 2 ]; b = [ 10 20 ]; } 897 897 => [ 898 898 { a = 1; b = 10; } 899 899 { a = 1; b = 20; } ··· 904 904 905 905 ::: 906 906 */ 907 - cartesianProductOfSets = 907 + cartesianProduct = 908 908 attrsOfLists: 909 909 foldl' (listOfAttrs: attrName: 910 910 concatMap (attrs: ··· 912 912 ) listOfAttrs 913 913 ) [{}] (attrNames attrsOfLists); 914 914 915 + 916 + /** 917 + Return the result of function f applied to the cartesian product of attribute set value combinations. 918 + Equivalent to using cartesianProduct followed by map. 919 + 920 + # Inputs 921 + 922 + `f` 923 + 924 + : A function, given an attribute set, it returns a new value. 925 + 926 + `attrsOfLists` 927 + 928 + : Attribute set with attributes that are lists of values 929 + 930 + # Type 931 + 932 + ``` 933 + mapCartesianProduct :: (AttrSet -> a) -> AttrSet -> [a] 934 + ``` 935 + 936 + # Examples 937 + :::{.example} 938 + ## `lib.attrsets.mapCartesianProduct` usage example 939 + 940 + ```nix 941 + mapCartesianProduct ({a, b}: "${a}-${b}") { a = [ "1" "2" ]; b = [ "3" "4" ]; } 942 + => [ "1-3" "1-4" "2-3" "2-4" ] 943 + ``` 944 + 945 + ::: 946 + 947 + */ 948 + mapCartesianProduct = f: attrsOfLists: map f (cartesianProduct attrsOfLists); 915 949 916 950 /** 917 951 Utility function that creates a `{name, value}` pair as expected by `builtins.listToAttrs`. ··· 1999 2033 # DEPRECATED 2000 2034 zip = warn 2001 2035 "lib.zip is a deprecated alias of lib.zipAttrsWith." zipAttrsWith; 2036 + 2037 + # DEPRECATED 2038 + cartesianProductOfSets = warnIf (isInOldestRelease 2405) 2039 + "lib.cartesianProductOfSets is a deprecated alias of lib.cartesianProduct." cartesianProduct; 2002 2040 }
+2 -2
lib/default.nix
··· 86 86 zipAttrsWithNames zipAttrsWith zipAttrs recursiveUpdateUntil 87 87 recursiveUpdate matchAttrs mergeAttrsList overrideExisting showAttrPath getOutput 88 88 getBin getLib getDev getMan chooseDevOutputs zipWithNames zip 89 - recurseIntoAttrs dontRecurseIntoAttrs cartesianProductOfSets 90 - updateManyAttrsByPath; 89 + recurseIntoAttrs dontRecurseIntoAttrs cartesianProduct cartesianProductOfSets 90 + mapCartesianProduct updateManyAttrsByPath; 91 91 inherit (self.lists) singleton forEach foldr fold foldl foldl' imap0 imap1 92 92 concatMap flatten remove findSingle findFirst any all count 93 93 optional optionals toList range replicate partition zipListsWith zipLists
+19 -3
lib/lists.nix
··· 1688 1688 ## `lib.lists.crossLists` usage example 1689 1689 1690 1690 ```nix 1691 - crossLists (x:y: "${toString x}${toString y}") [[1 2] [3 4]] 1691 + crossLists (x: y: "${toString x}${toString y}") [[1 2] [3 4]] 1692 1692 => [ "13" "14" "23" "24" ] 1693 1693 ``` 1694 1694 1695 + The following function call is equivalent to the one deprecated above: 1696 + 1697 + ```nix 1698 + mapCartesianProduct (x: "${toString x.a}${toString x.b}") { a = [1 2]; b = [3 4]; } 1699 + => [ "13" "14" "23" "24" ] 1700 + ``` 1695 1701 ::: 1696 1702 */ 1697 1703 crossLists = warn 1698 - "lib.crossLists is deprecated, use lib.cartesianProductOfSets instead." 1699 - (f: foldl (fs: args: concatMap (f: map f args) fs) [f]); 1704 + ''lib.crossLists is deprecated, use lib.mapCartesianProduct instead. 1700 1705 1706 + For example, the following function call: 1707 + 1708 + nix-repl> lib.crossLists (x: y: x+y) [[1 2] [3 4]] 1709 + [ 4 5 5 6 ] 1710 + 1711 + Can now be replaced by the following one: 1712 + 1713 + nix-repl> lib.mapCartesianProduct ({x,y}: x+y) { x = [1 2]; y = [3 4]; } 1714 + [ 4 5 5 6 ] 1715 + '' 1716 + (f: foldl (fs: args: concatMap (f: map f args) fs) [f]); 1701 1717 1702 1718 /** 1703 1719 Remove duplicate elements from the `list`. O(n^2) complexity.
+35 -15
lib/tests/misc.nix
··· 33 33 boolToString 34 34 callPackagesWith 35 35 callPackageWith 36 - cartesianProductOfSets 36 + cartesianProduct 37 37 cli 38 38 composeExtensions 39 39 composeManyExtensions ··· 71 71 makeIncludePath 72 72 makeOverridable 73 73 mapAttrs 74 + mapCartesianProduct 74 75 matchAttrs 75 76 mergeAttrs 76 77 meta 77 - mkOption 78 78 mod 79 79 nameValuePair 80 80 optionalDrvAttr ··· 117 117 expr = (builtins.tryEval expr).success; 118 118 expected = true; 119 119 }; 120 - testingDeepThrow = expr: testingThrow (builtins.deepSeq expr expr); 121 120 122 121 testSanitizeDerivationName = { name, expected }: 123 122 let ··· 1415 1414 }; 1416 1415 1417 1416 testToPrettyMultiline = { 1418 - expr = mapAttrs (const (generators.toPretty { })) rec { 1417 + expr = mapAttrs (const (generators.toPretty { })) { 1419 1418 list = [ 3 4 [ false ] ]; 1420 1419 attrs = { foo = null; bar.foo = "baz"; }; 1421 1420 newlinestring = "\n"; ··· 1429 1428 there 1430 1429 test''; 1431 1430 }; 1432 - expected = rec { 1431 + expected = { 1433 1432 list = '' 1434 1433 [ 1435 1434 3 ··· 1467 1466 expected = "«foo»"; 1468 1467 }; 1469 1468 1470 - testToPlist = 1471 - let 1472 - deriv = derivation { name = "test"; builder = "/bin/sh"; system = "aarch64-linux"; }; 1473 - in { 1469 + testToPlist = { 1474 1470 expr = mapAttrs (const (generators.toPlist { })) { 1475 1471 value = { 1476 - nested.values = rec { 1472 + nested.values = { 1477 1473 int = 42; 1478 1474 float = 0.1337; 1479 1475 bool = true; ··· 1686 1682 }; 1687 1683 1688 1684 testCartesianProductOfEmptySet = { 1689 - expr = cartesianProductOfSets {}; 1685 + expr = cartesianProduct {}; 1690 1686 expected = [ {} ]; 1691 1687 }; 1692 1688 1693 1689 testCartesianProductOfOneSet = { 1694 - expr = cartesianProductOfSets { a = [ 1 2 3 ]; }; 1690 + expr = cartesianProduct { a = [ 1 2 3 ]; }; 1695 1691 expected = [ { a = 1; } { a = 2; } { a = 3; } ]; 1696 1692 }; 1697 1693 1698 1694 testCartesianProductOfTwoSets = { 1699 - expr = cartesianProductOfSets { a = [ 1 ]; b = [ 10 20 ]; }; 1695 + expr = cartesianProduct { a = [ 1 ]; b = [ 10 20 ]; }; 1700 1696 expected = [ 1701 1697 { a = 1; b = 10; } 1702 1698 { a = 1; b = 20; } ··· 1704 1700 }; 1705 1701 1706 1702 testCartesianProductOfTwoSetsWithOneEmpty = { 1707 - expr = cartesianProductOfSets { a = [ ]; b = [ 10 20 ]; }; 1703 + expr = cartesianProduct { a = [ ]; b = [ 10 20 ]; }; 1708 1704 expected = [ ]; 1709 1705 }; 1710 1706 1711 1707 testCartesianProductOfThreeSets = { 1712 - expr = cartesianProductOfSets { 1708 + expr = cartesianProduct { 1713 1709 a = [ 1 2 3 ]; 1714 1710 b = [ 10 20 30 ]; 1715 1711 c = [ 100 200 300 ]; ··· 1751 1747 { a = 3; b = 30; c = 200; } 1752 1748 { a = 3; b = 30; c = 300; } 1753 1749 ]; 1750 + }; 1751 + 1752 + testMapCartesianProductOfOneSet = { 1753 + expr = mapCartesianProduct ({a}: a * 2) { a = [ 1 2 3 ]; }; 1754 + expected = [ 2 4 6 ]; 1755 + }; 1756 + 1757 + testMapCartesianProductOfTwoSets = { 1758 + expr = mapCartesianProduct ({a,b}: a + b) { a = [ 1 ]; b = [ 10 20 ]; }; 1759 + expected = [ 11 21 ]; 1760 + }; 1761 + 1762 + testMapCartesianProcutOfTwoSetsWithOneEmpty = { 1763 + expr = mapCartesianProduct (x: x.a + x.b) { a = [ ]; b = [ 10 20 ]; }; 1764 + expected = [ ]; 1765 + }; 1766 + 1767 + testMapCartesianProductOfThreeSets = { 1768 + expr = mapCartesianProduct ({a,b,c}: a + b + c) { 1769 + a = [ 1 2 3 ]; 1770 + b = [ 10 20 30 ]; 1771 + c = [ 100 200 300 ]; 1772 + }; 1773 + expected = [ 111 211 311 121 221 321 131 231 331 112 212 312 122 222 322 132 232 332 113 213 313 123 223 323 133 233 333 ]; 1754 1774 }; 1755 1775 1756 1776 # The example from the showAttrPath documentation
+6
maintainers/maintainer-list.nix
··· 13394 13394 fingerprint = "64BE BF11 96C3 DD7A 443E 8314 1DC0 82FA DE5B A863"; 13395 13395 }]; 13396 13396 }; 13397 + mlaradji = { 13398 + name = "Mohamed Laradji"; 13399 + email = "mlaradji@pm.me"; 13400 + github = "mlaradji"; 13401 + githubId = 33703663; 13402 + }; 13397 13403 mlatus = { 13398 13404 email = "wqseleven@gmail.com"; 13399 13405 github = "Ninlives";
+4 -1
nixos/modules/services/misc/paperless.nix
··· 203 203 apply = pkg: pkg.override { 204 204 tesseract5 = pkg.tesseract5.override { 205 205 # always enable detection modules 206 + # tesseract fails to build when eng is not present 206 207 enableLanguages = if cfg.settings ? PAPERLESS_OCR_LANGUAGE then 207 - [ "equ" "osd" ] 208 + lists.unique ( 209 + [ "equ" "osd" "eng" ] 208 210 ++ lib.splitString "+" cfg.settings.PAPERLESS_OCR_LANGUAGE 211 + ) 209 212 else null; 210 213 }; 211 214 };
+37 -4
nixos/modules/services/misc/podgrab.nix
··· 1 1 { config, lib, pkgs, ... }: 2 2 let 3 3 cfg = config.services.podgrab; 4 + 5 + stateDir = "/var/lib/podgrab"; 4 6 in 5 7 { 6 8 options.services.podgrab = with lib; { ··· 21 23 default = 8080; 22 24 example = 4242; 23 25 description = "The port on which Podgrab will listen for incoming HTTP traffic."; 26 + }; 27 + 28 + dataDirectory = mkOption { 29 + type = types.path; 30 + default = "${stateDir}/data"; 31 + example = "/mnt/podcasts"; 32 + description = "Directory to store downloads."; 33 + }; 34 + 35 + user = mkOption { 36 + type = types.str; 37 + default = "podgrab"; 38 + description = "User under which Podgrab runs, and which owns the download directory."; 39 + }; 40 + 41 + group = mkOption { 42 + type = types.str; 43 + default = "podgrab"; 44 + description = "Group under which Podgrab runs, and which owns the download directory."; 24 45 }; 25 46 }; 26 47 27 48 config = lib.mkIf cfg.enable { 49 + systemd.tmpfiles.settings."10-pyload" = { 50 + ${cfg.dataDirectory}.d = { inherit (cfg) user group; }; 51 + }; 52 + 28 53 systemd.services.podgrab = { 29 54 description = "Podgrab podcast manager"; 30 55 wantedBy = [ "multi-user.target" ]; 31 56 environment = { 32 - CONFIG = "/var/lib/podgrab/config"; 33 - DATA = "/var/lib/podgrab/data"; 57 + CONFIG = "${stateDir}/config"; 58 + DATA = cfg.dataDirectory; 34 59 GIN_MODE = "release"; 35 60 PORT = toString cfg.port; 36 61 }; 37 62 serviceConfig = { 38 - DynamicUser = true; 63 + User = cfg.user; 64 + Group = cfg.group; 39 65 EnvironmentFile = lib.optionals (cfg.passwordFile != null) [ 40 66 cfg.passwordFile 41 67 ]; 42 68 ExecStart = "${pkgs.podgrab}/bin/podgrab"; 43 69 WorkingDirectory = "${pkgs.podgrab}/share"; 44 - StateDirectory = [ "podgrab/config" "podgrab/data" ]; 70 + StateDirectory = [ "podgrab/config" ]; 45 71 }; 46 72 }; 73 + 74 + users.users.podgrab = lib.mkIf (cfg.user == "podgrab") { 75 + isSystemUser = true; 76 + group = cfg.group; 77 + }; 78 + 79 + users.groups.podgrab = lib.mkIf (cfg.group == "podgrab") { }; 47 80 }; 48 81 49 82 meta.maintainers = with lib.maintainers; [ ambroisie ];
+2 -2
nixos/modules/services/x11/display-managers/default.nix
··· 284 284 in 285 285 # We will generate every possible pair of WM and DM. 286 286 concatLists ( 287 - builtins.map 287 + lib.mapCartesianProduct 288 288 ({dm, wm}: let 289 289 sessionName = "${dm.name}${optionalString (wm.name != "none") ("+" + wm.name)}"; 290 290 script = xsession dm wm; ··· 312 312 providedSessions = [ sessionName ]; 313 313 }) 314 314 ) 315 - (cartesianProductOfSets { dm = dms; wm = wms; }) 315 + { dm = dms; wm = wms; } 316 316 ); 317 317 }; 318 318
+1
nixos/tests/paperless.nix
··· 23 23 }; 24 24 services.paperless.settings = { 25 25 PAPERLESS_DBHOST = "/run/postgresql"; 26 + PAPERLESS_OCR_LANGUAGE = "deu"; 26 27 }; 27 28 }; 28 29 }; in self;
+1 -1
nixos/tests/predictable-interface-names.nix
··· 5 5 6 6 let 7 7 inherit (import ../lib/testing-python.nix { inherit system pkgs; }) makeTest; 8 - testCombinations = pkgs.lib.cartesianProductOfSets { 8 + testCombinations = pkgs.lib.cartesianProduct { 9 9 predictable = [true false]; 10 10 withNetworkd = [true false]; 11 11 systemdStage1 = [true false];
+4 -2
pkgs/applications/audio/ncspot/default.nix
··· 6 6 , ncurses 7 7 , openssl 8 8 , Cocoa 9 - , withALSA ? true, alsa-lib 9 + , withALSA ? false, alsa-lib 10 10 , withClipboard ? true, libxcb, python3 11 11 , withCover ? false, ueberzug 12 - , withPulseAudio ? false, libpulseaudio 12 + , withPulseAudio ? true, libpulseaudio 13 13 , withPortAudio ? false, portaudio 14 14 , withMPRIS ? true, withNotify ? true, dbus 15 + , withCrossterm ? true 15 16 , nix-update-script 16 17 , testers 17 18 , ncspot ··· 54 55 ++ lib.optional withPulseAudio "pulseaudio_backend" 55 56 ++ lib.optional withPortAudio "portaudio_backend" 56 57 ++ lib.optional withMPRIS "mpris" 58 + ++ lib.optional withCrossterm "crossterm_backend" 57 59 ++ lib.optional withNotify "notify"; 58 60 59 61 postInstall = ''
+2 -2
pkgs/applications/blockchains/btcpayserver/default.nix
··· 6 6 7 7 buildDotnetModule rec { 8 8 pname = "btcpayserver"; 9 - version = "1.12.5"; 9 + version = "1.13.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = pname; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-qlqwIVk8NzfFZlzShfm3nTZWovObWLIKiNGAOCN8i7Y="; 15 + sha256 = "sha256-p0GNwwbhsgChlSlPVD/RHhzWF/1URdYp/iYQmJxORU8="; 16 16 }; 17 17 18 18 projectFile = "BTCPayServer/BTCPayServer.csproj";
+6 -5
pkgs/applications/blockchains/btcpayserver/deps.nix
··· 8 8 (fetchNuGet { pname = "AWSSDK.S3"; version = "3.3.110.10"; sha256 = "1lf1hfbx792dpa1hxgn0a0jrrvldd16hgbxx229dk2qcz5qlnc38"; }) 9 9 (fetchNuGet { pname = "BIP78.Sender"; version = "0.2.2"; sha256 = "12pm2s35c0qzc06099q2z1pxwq94rq85n74yz8fs8gwvm2ksgp4p"; }) 10 10 (fetchNuGet { pname = "BTCPayServer.Hwi"; version = "2.0.2"; sha256 = "0lh3n1qncqs4kbrmx65xs271f0d9c7irrs9qnsa9q51cbbqbljh9"; }) 11 - (fetchNuGet { pname = "BTCPayServer.Lightning.All"; version = "1.5.3"; sha256 = "0nn6z1gjkkfy46w32pc5dvp4z5gjnwa9bn7xjkxgh7575m467jpp"; }) 11 + (fetchNuGet { pname = "BTCPayServer.Lightning.All"; version = "1.6.0"; sha256 = "0xcqf7jz5rsi6nawcjfdbbdjlnqbx8xfzw8sn3a9ks8xjqv37krn"; }) 12 12 (fetchNuGet { pname = "BTCPayServer.Lightning.Charge"; version = "1.5.1"; sha256 = "1sb6qhm15d6qqyx9v5g7csvp8phhs6k2py5wmfmbpnjydaydf76g"; }) 13 - (fetchNuGet { pname = "BTCPayServer.Lightning.CLightning"; version = "1.5.1"; sha256 = "13slknvqslxn8sp4dcwgbrnigrd9di84h9hribpls79kzw76gfpy"; }) 13 + (fetchNuGet { pname = "BTCPayServer.Lightning.CLightning"; version = "1.6.0"; sha256 = "1bsmic9i1p2ya5hv1mscv46fxh6ibczfj1srylzwcpgs0mypy5y3"; }) 14 14 (fetchNuGet { pname = "BTCPayServer.Lightning.Common"; version = "1.3.21"; sha256 = "042xwfsxd30zgwiz0w14ynb755w5sldkplxgw1fkw68lrz66x5s4"; }) 15 15 (fetchNuGet { pname = "BTCPayServer.Lightning.Common"; version = "1.5.1"; sha256 = "1jy5k0nd2b10p3gyv8qm3nb31chkpcssrb9sjw2dqbac757nv154"; }) 16 16 (fetchNuGet { pname = "BTCPayServer.Lightning.Eclair"; version = "1.5.2"; sha256 = "1wmj66my2cg9dbz4bf8vrkxpkpl4wfqaxxzqxgs830vdk8h7pp50"; }) 17 17 (fetchNuGet { pname = "BTCPayServer.Lightning.LNBank"; version = "1.5.2"; sha256 = "0g2jv712lb3arlpf6j8p0ccq62gz1bjipb9ndzhdk7mwhaznkrwl"; }) 18 - (fetchNuGet { pname = "BTCPayServer.Lightning.LND"; version = "1.5.2"; sha256 = "1yfs2ghh7xw4c98hfm3k8sdkij8qxwnfnb8fjw896jvj2jd3p3sr"; }) 18 + (fetchNuGet { pname = "BTCPayServer.Lightning.LND"; version = "1.5.4"; sha256 = "0jqxy60msq9rl04lmqyiz9f02mjywypfh3apr9vcbyv2q47maxnd"; }) 19 19 (fetchNuGet { pname = "BTCPayServer.Lightning.LNDhub"; version = "1.5.2"; sha256 = "09i663w6i93675bxrq5x6l26kr60mafwfr6ny92xrppj8rmd2lzx"; }) 20 20 (fetchNuGet { pname = "BTCPayServer.NETCore.Plugins"; version = "1.4.4"; sha256 = "0rk0prmb0539ji5fd33cqy3yvw51i5i8m5hb43admr5z8960dd6l"; }) 21 21 (fetchNuGet { pname = "BTCPayServer.NETCore.Plugins.Mvc"; version = "1.4.4"; sha256 = "1kmmj5m7s41wc1akpqw1b1j7pp4c0vn6sqxb487980ibpj6hyisl"; }) 22 - (fetchNuGet { pname = "BTCPayServer.NTag424"; version = "1.0.20"; sha256 = "19nzikcg7vygpad83lcaw5jvkrp4pgvggnziwkmi95l8k38gkj5q"; }) 22 + (fetchNuGet { pname = "BTCPayServer.NTag424"; version = "1.0.22"; sha256 = "1gy81kqd745p2sak7yj5phn25k8blwwjzi39s5ikpwyqg3b0arsw"; }) 23 23 (fetchNuGet { pname = "CsvHelper"; version = "15.0.5"; sha256 = "01y8bhsnxghn3flz0pr11vj6wjrpmia8rpdrsp7kjfc1zmhqlgma"; }) 24 24 (fetchNuGet { pname = "Dapper"; version = "2.1.28"; sha256 = "15vpa9k11rr1mh5vb6hdchy8hqa03lqs83w19s3kxzh1089yl9m8"; }) 25 25 (fetchNuGet { pname = "DigitalRuby.ExchangeSharp"; version = "1.0.4"; sha256 = "1hkdls4wjrxq6df1zq9saa6hn5hynalq3gxb486w59j7i9f3g7d8"; }) ··· 36 36 (fetchNuGet { pname = "Google.Apis.Core"; version = "1.38.0"; sha256 = "012gslhnx65vqfyzjnqx4bqk9kb8bwbx966q2f9fdgrfcn26gj9j"; }) 37 37 (fetchNuGet { pname = "Google.Apis.Storage.v1"; version = "1.38.0.1470"; sha256 = "0mfrz7fmpfbjvp4zfpjasmnfbgxgxrrjkf8xgp9p6h9g8qh2f2h2"; }) 38 38 (fetchNuGet { pname = "Google.Cloud.Storage.V1"; version = "2.3.0"; sha256 = "01jhrd6m6md8m28chzg2dkdfd4yris79j1xi7r1ydm1cfjhmlj64"; }) 39 - (fetchNuGet { pname = "HtmlSanitizer"; version = "8.0.723"; sha256 = "1x621v4ypgd1zrmq7zd7j9wcrc30f6rm9qh0i1sm4yfqd983yf4g"; }) 39 + (fetchNuGet { pname = "HtmlSanitizer"; version = "8.0.838"; sha256 = "1k05ld36872lzbhlby9m1vf9y7chlijbflbk2pzcni57b9rp2qrg"; }) 40 40 (fetchNuGet { pname = "Humanizer.Core"; version = "2.14.1"; sha256 = "1ai7hgr0qwd7xlqfd92immddyi41j3ag91h3594yzfsgsy6yhyqi"; }) 41 41 (fetchNuGet { pname = "libsodium"; version = "1.0.18"; sha256 = "15qzl5k31yaaapqlijr336lh4lzz1qqxlimgxy8fdyig8jdmgszn"; }) 42 42 (fetchNuGet { pname = "LNURL"; version = "0.0.34"; sha256 = "1sbkqsln7wq5fsbw63wdha8kqwxgd95j0iblv4kxa1shyg3c5d9x"; }) ··· 251 251 (fetchNuGet { pname = "System.Collections.Immutable"; version = "5.0.0"; sha256 = "1kvcllagxz2q92g81zkz81djkn2lid25ayjfgjalncyc68i15p0r"; }) 252 252 (fetchNuGet { pname = "System.Collections.Immutable"; version = "6.0.0"; sha256 = "1js98kmjn47ivcvkjqdmyipzknb9xbndssczm8gq224pbaj1p88c"; }) 253 253 (fetchNuGet { pname = "System.Collections.Immutable"; version = "7.0.0"; sha256 = "1n9122cy6v3qhsisc9lzwa1m1j62b8pi2678nsmnlyvfpk0zdagm"; }) 254 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "8.0.0"; sha256 = "0z53a42zjd59zdkszcm7pvij4ri5xbb8jly9hzaad9khlf69bcqp"; }) 254 255 (fetchNuGet { pname = "System.Composition"; version = "6.0.0"; sha256 = "1p7hysns39cc24af6dwd4m48bqjsrr3clvi4aws152mh2fgyg50z"; }) 255 256 (fetchNuGet { pname = "System.Composition.AttributedModel"; version = "6.0.0"; sha256 = "1mqrblb0l65hw39d0hnspqcv85didpn4wbiwhfgj4784wzqx2w6k"; }) 256 257 (fetchNuGet { pname = "System.Composition.Convention"; version = "6.0.0"; sha256 = "02km3yb94p1c4s7liyhkmda0g71zm1rc8ijsfmy4bnlkq15xjw3b"; })
+2 -2
pkgs/applications/blockchains/nbxplorer/default.nix
··· 6 6 7 7 buildDotnetModule rec { 8 8 pname = "nbxplorer"; 9 - version = "2.5.0"; 9 + version = "2.5.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "dgarage"; 13 13 repo = "NBXplorer"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-yhOPv8J1unDx61xPc8ktQbIfkp00PPXRlOgdGo2QkB4="; 15 + sha256 = "sha256-zfL+VoDfICUtw02KeRghaq3XPOa/YnSh8orhqmo3Auo="; 16 16 }; 17 17 18 18 projectFile = "NBXplorer/NBXplorer.csproj";
+1 -1
pkgs/applications/blockchains/nbxplorer/deps.nix
··· 46 46 (fetchNuGet { pname = "NicolasDorier.CommandLine"; version = "2.0.0"; sha256 = "0gywvl0gqs3crlzwgwzcqf0qsrbhk3dxjycpimxqvs1ihg4dhb1f"; }) 47 47 (fetchNuGet { pname = "NicolasDorier.CommandLine.Configuration"; version = "2.0.0"; sha256 = "1cng096r3kb85lf5wjill4yhxx8nv9v0d6ksbn1i1vvdawwl6fkw"; }) 48 48 (fetchNuGet { pname = "NicolasDorier.StandardConfiguration"; version = "2.0.0"; sha256 = "0058dx34ja2idw468bmw7l3w21wr2am6yx57sqp7llhjl5ayy0wv"; }) 49 - (fetchNuGet { pname = "Npgsql"; version = "8.0.1"; sha256 = "01dqlqpwr450vfs7r113k1glrnpnr2fgc04x5ni6bj0k6aahhl7v"; }) 49 + (fetchNuGet { pname = "Npgsql"; version = "8.0.2"; sha256 = "0w1hm3bjh1vfnkzflp1x8bd4d723mpr4y6gb6ga79v5kkf09cmm2"; }) 50 50 (fetchNuGet { pname = "RabbitMQ.Client"; version = "5.1.2"; sha256 = "195nxmnva1z2p0ahvn0kswv4d39f5bdy2sl3cxcvfziamc21xrmd"; }) 51 51 (fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; sha256 = "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0"; }) 52 52 (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tools"; version = "4.3.0"; sha256 = "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk"; })
+9 -9
pkgs/applications/misc/1password-gui/default.nix
··· 9 9 let 10 10 11 11 pname = "1password"; 12 - version = if channel == "stable" then "8.10.28" else "8.10.30-11.BETA"; 12 + version = if channel == "stable" then "8.10.30" else "8.10.30-20.BETA"; 13 13 14 14 sources = { 15 15 stable = { 16 16 x86_64-linux = { 17 17 url = "https://downloads.1password.com/linux/tar/stable/x86_64/1password-${version}.x64.tar.gz"; 18 - hash = "sha256-1EfP8z+vH0yRklkcxCOPYExu13iFcs6jOdvWBzl64BA="; 18 + hash = "sha256-q1PKFpBgjada7jmeXZYmH8dvy2A4lwfrQ0jQSoHVNcg="; 19 19 }; 20 20 aarch64-linux = { 21 21 url = "https://downloads.1password.com/linux/tar/stable/aarch64/1password-${version}.arm64.tar.gz"; 22 - hash = "sha256-E4MfpHVIn5Vu/TcDgwkoHdSnKthaAMFJZArnmSH5cxA="; 22 + hash = "sha256-Zv/mnykPi9PCDX44JtGi0GPrOujSmjx1BBJuEB81CwE="; 23 23 }; 24 24 x86_64-darwin = { 25 25 url = "https://downloads.1password.com/mac/1Password-${version}-x86_64.zip"; 26 - hash = "sha256-+cXirJyDnxfE5FN8HEIrEyyoGvVrJ+0ykBHON9oHAek="; 26 + hash = "sha256-unC1cz5ooSdu4Csf7/daCyPdMy3/Lp3a76B7TBa/VXk="; 27 27 }; 28 28 aarch64-darwin = { 29 29 url = "https://downloads.1password.com/mac/1Password-${version}-aarch64.zip"; 30 - hash = "sha256-zKAgAKYIgy5gZbe2IpskV8DG8AKtamYqq8cF/mTpRss="; 30 + hash = "sha256-DS6oCdr6srF+diL68a2gOskS4x+uj1i8DtL3uaaxv/I="; 31 31 }; 32 32 }; 33 33 beta = { 34 34 x86_64-linux = { 35 35 url = "https://downloads.1password.com/linux/tar/beta/x86_64/1password-${version}.x64.tar.gz"; 36 - hash = "sha256-6zyDZRsk9FZXJuGqqt1kCATcL99PjYP/wQzqE/4e4kg="; 36 + hash = "sha256-6I/3o+33sIkfyef8xGUWczaWykHPcvvAGv0xy/jCkKI="; 37 37 }; 38 38 aarch64-linux = { 39 39 url = "https://downloads.1password.com/linux/tar/beta/aarch64/1password-${version}.arm64.tar.gz"; 40 - hash = "sha256-JwHk6Byqd5LxVWBT/blRVnYhgSeYfaVY3Ax4GkLcFxM="; 40 + hash = "sha256-ph6DBBUzdUHtYCAQiA1me3bevtVPEgIxtwbgbdgQcGY="; 41 41 }; 42 42 x86_64-darwin = { 43 43 url = "https://downloads.1password.com/mac/1Password-${version}-x86_64.zip"; 44 - hash = "sha256-h7vJguOEQBEvX9Z9MjdLj0hPnn8hJpeWRoduVowznLg="; 44 + hash = "sha256-XzZOj1pfoCTGMTsqZlI8hKTDRJ4w7debAPYHIIwsyyY="; 45 45 }; 46 46 aarch64-darwin = { 47 47 url = "https://downloads.1password.com/mac/1Password-${version}-aarch64.zip"; 48 - hash = "sha256-g6lorMdQ56B6gd4YN4WQSkztwHqIgO7QshM1zocpqTE="; 48 + hash = "sha256-s+hnKhI2s6E1ZyJQxs3Wggy60LxCEr+u3tRtjTgjmZk="; 49 49 }; 50 50 }; 51 51 };
+3 -1
pkgs/applications/misc/systembus-notify/default.nix
··· 17 17 Type = "exec"; 18 18 ExecStart = "@out@/bin/systembus-notify"; 19 19 PrivateTmp = true; 20 - ProtectHome = true; 20 + # NB. We cannot `ProtectHome`, or it would block session dbus access. 21 + InaccessiblePaths = "/home"; 22 + ReadOnlyPaths = "/run/user"; 21 23 ProtectSystem = "strict"; 22 24 Restart = "on-failure"; 23 25 Slice = "background.slice";
+7 -3
pkgs/applications/misc/writefreely/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "writefreely"; 5 - version = "0.14.0"; 5 + version = "0.15.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "writefreely"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-vOoTAr33FMQaHIwpwIX0g/KJWQvDn3oVJg14kEY6FIQ="; 11 + sha256 = "sha256-7KTNimthtfmQCgyXevAEj+CZ2MS+uOby73OO1fGNXfs="; 12 12 }; 13 13 14 - vendorHash = "sha256-xTo/zbz9pSjvNntr5dnytiJ7oRAdtEuyiu4mJZgwHTc="; 14 + vendorHash = "sha256-6RTshhxX+w/gdK53wCHVMpm6EkkRtEJ2/Fe7MfZ0WvY="; 15 + 16 + patches = [ 17 + ./fix-go-version-error.patch 18 + ]; 15 19 16 20 ldflags = [ "-s" "-w" "-X github.com/writefreely/writefreely.softwareVer=${version}" ]; 17 21
+36
pkgs/applications/misc/writefreely/fix-go-version-error.patch
··· 1 + diff --git a/go.mod b/go.mod 2 + index c49d701..601443d 100644 3 + --- a/go.mod 4 + +++ b/go.mod 5 + @@ -89,4 +89,6 @@ require ( 6 + gopkg.in/yaml.v3 v3.0.1 // indirect 7 + ) 8 + 9 + -go 1.19 10 + +go 1.21 11 + + 12 + +toolchain go1.21.6 13 + diff --git a/go.sum b/go.sum 14 + index a9256ea..28ad24f 100644 15 + --- a/go.sum 16 + +++ b/go.sum 17 + @@ -72,6 +72,7 @@ github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMyw 18 + github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= 19 + github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= 20 + github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0= 21 + +github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= 22 + github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e h1:JKmoR8x90Iww1ks85zJ1lfDGgIiMDuIptTOhJq+zKyg= 23 + github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= 24 + github.com/gorilla/csrf v1.7.2 h1:oTUjx0vyf2T+wkrx09Trsev1TE+/EbDAeHtSTbtC2eI= 25 + @@ -106,9 +107,11 @@ github.com/jtolds/gls v4.2.1+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVY 26 + github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= 27 + github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= 28 + github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= 29 + +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= 30 + github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= 31 + github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= 32 + github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= 33 + +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= 34 + github.com/kylemcc/twitter-text-go v0.0.0-20180726194232-7f582f6736ec h1:ZXWuspqypleMuJy4bzYEqlMhJnGAYpLrWe5p7W3CdvI= 35 + github.com/kylemcc/twitter-text-go v0.0.0-20180726194232-7f582f6736ec/go.mod h1:voECJzdraJmolzPBgL9Z7ANwXf4oMXaTCsIkdiPpR/g= 36 + github.com/mailgun/mailgun-go v2.0.0+incompatible h1:0FoRHWwMUctnd8KIR3vtZbqdfjpIMxOZgcSa51s8F8o=
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/packages.nix
··· 44 44 45 45 thunderbird-115 = (buildMozillaMach rec { 46 46 pname = "thunderbird"; 47 - version = "115.9.0"; 47 + version = "115.10.1"; 48 48 application = "comm/mail"; 49 49 applicationName = "Mozilla Thunderbird"; 50 50 binaryName = pname; 51 51 src = fetchurl { 52 52 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 53 - sha512 = "8ff0bed6e6d7f337ebae09011a10b59343ae7a8355ed1da2d72ec0d4218010adfae78e42565e5b784df26cef4702f313dc9616ac5ca5530fb772d77bdf7f2ea4"; 53 + sha512 = "0324811d3e7e6228bb45cbf01e8a4a08b8386e22d1b52eb79f9a9a3bda940eb9d534ec1230961e9a998a0162c299a1ad49d23c5fbfa8e287896bcc0fd1c398e0"; 54 54 }; 55 55 extraPatches = [ 56 56 # The file to be patched is different from firefox's `no-buildconfig-ffx90.patch`.
+195
pkgs/by-name/cy/cyclonedx-cli/deps.nix
··· 1 + # This file was automatically generated by passthru.fetch-deps. 2 + # Please dont edit it manually, your changes might get overwritten! 3 + 4 + { fetchNuGet }: [ 5 + (fetchNuGet { pname = "CoderPatros.AntPathMatching"; version = "0.1.1"; sha256 = "1a9xhigw6bc4gl7qg3d8m9y53bk0mn9kmw07w4y27f32gr6m9b2k"; }) 6 + (fetchNuGet { pname = "coverlet.collector"; version = "3.1.2"; sha256 = "0gsk2q93qw7pqxwd4pdyq5364wz0lvldcqqnf4amz13jaq86idmz"; }) 7 + (fetchNuGet { pname = "CsvHelper"; version = "29.0.0"; sha256 = "0x5i3x5jqrxi82sgzfbgyrqqd6nsgb35z5p4rhqzb0fhq9qf6hlw"; }) 8 + (fetchNuGet { pname = "CycloneDX.Core"; version = "6.0.0"; sha256 = "0lvllq1bb4w2l9va2ayjyd0kkbqyglkgjbha3y2hq71qkviqryd2"; }) 9 + (fetchNuGet { pname = "CycloneDX.Spdx"; version = "6.0.0"; sha256 = "032q2rp2626hirfhr8q6xhi2hs35ma137fswivsd1lkcz69vvl4h"; }) 10 + (fetchNuGet { pname = "CycloneDX.Spdx.Interop"; version = "6.0.0"; sha256 = "1c660hpq3bl3zaxyn9dkcn64f97nb1ri1bcdnky39ap4z6fp96ll"; }) 11 + (fetchNuGet { pname = "CycloneDX.Utils"; version = "6.0.0"; sha256 = "1zf57hppl586x2sc9c3j4n9mqyinfsnj2fp66rxdljgcrlsb1vd1"; }) 12 + (fetchNuGet { pname = "JetBrains.Annotations"; version = "2021.2.0"; sha256 = "0krvmg2h5ibh6mzs9yn7c8cdxgvr5hm7l884i49hlhnc1aiy5m1n"; }) 13 + (fetchNuGet { pname = "Json.More.Net"; version = "1.7.0"; sha256 = "0fbmrq88wqbfpngs9vfx03xdbg71liz07nyx620za82f294pcdzk"; }) 14 + (fetchNuGet { pname = "JsonPointer.Net"; version = "2.2.1"; sha256 = "16fhp2v2cqb9yaxy0nzq5ngmx1b089iz1phqfi0nhdjln3b2win6"; }) 15 + (fetchNuGet { pname = "JsonSchema.Net"; version = "3.3.2"; sha256 = "0sfp8qvdnxnh93q1vs9f9pjybjkh9jifvhaxjgfksf6zbz8dhp4v"; }) 16 + (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.3.2"; sha256 = "1f05l2vm8inlwhk36lfbyszjlcnvdd2qw2832npaah0dldn6dz00"; }) 17 + (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.0.1"; sha256 = "0zxc0apx1gcx361jlq8smc9pfdgmyjh6hpka8dypc9w23nlsh6yj"; }) 18 + (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.4.1"; sha256 = "0z6d1i6xcf0c00z6rs75rgw4ncs9q2m8amasf6mmbf40fm02ry7g"; }) 19 + (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.3.2"; sha256 = "0pm06nxqi8aw04lciqy7iz8ln1qm5mx06cpwgqa2dfwvnjp7zxnm"; }) 20 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; }) 21 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; }) 22 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "5.0.0"; sha256 = "0mwpwdflidzgzfx2dlpkvvnkgkr2ayaf0s80737h4wa35gaj11rc"; }) 23 + (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.0.1"; sha256 = "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p"; }) 24 + (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.0"; sha256 = "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh"; }) 25 + (fetchNuGet { pname = "Microsoft.TestPlatform.ObjectModel"; version = "17.3.2"; sha256 = "0bs38r5kdw1xpbjbi5l82xbhfnfbzr5xhg5520lk05pg914d1ln1"; }) 26 + (fetchNuGet { pname = "Microsoft.TestPlatform.TestHost"; version = "17.3.2"; sha256 = "089nmaxzvm5xcf20pm4iiavz2k6lwh69r51xlbqg0ry605mnl869"; }) 27 + (fetchNuGet { pname = "Microsoft.Win32.Primitives"; version = "4.3.0"; sha256 = "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq"; }) 28 + (fetchNuGet { pname = "NETStandard.Library"; version = "1.6.1"; sha256 = "1z70wvsx2d847a2cjfii7b83pjfs34q05gb037fdjikv5kbagml8"; }) 29 + (fetchNuGet { pname = "Newtonsoft.Json"; version = "12.0.3"; sha256 = "17dzl305d835mzign8r15vkmav2hq8l6g7942dfjpnzr17wwl89x"; }) 30 + (fetchNuGet { pname = "Newtonsoft.Json"; version = "9.0.1"; sha256 = "0mcy0i7pnfpqm4pcaiyzzji4g0c8i3a5gjz28rrr28110np8304r"; }) 31 + (fetchNuGet { pname = "NuGet.Frameworks"; version = "5.11.0"; sha256 = "0wv26gq39hfqw9md32amr5771s73f5zn1z9vs4y77cgynxr73s4z"; }) 32 + (fetchNuGet { pname = "protobuf-net"; version = "3.2.26"; sha256 = "1mcg46xnhgqwjacy6j8kvp3rylpi26wjnmhwv8mh5cwjya9nynqb"; }) 33 + (fetchNuGet { pname = "protobuf-net.Core"; version = "3.2.26"; sha256 = "1wrr38ygdanf121bkl8b1d4kz1pawm064z69bqf3qbr46h4j575w"; }) 34 + (fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; sha256 = "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0"; }) 35 + (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tools"; version = "4.3.0"; sha256 = "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk"; }) 36 + (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tracing"; version = "4.3.0"; sha256 = "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn"; }) 37 + (fetchNuGet { pname = "runtime.any.System.Globalization"; version = "4.3.0"; sha256 = "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x"; }) 38 + (fetchNuGet { pname = "runtime.any.System.Globalization.Calendars"; version = "4.3.0"; sha256 = "1ghhhk5psqxcg6w88sxkqrc35bxcz27zbqm2y5p5298pv3v7g201"; }) 39 + (fetchNuGet { pname = "runtime.any.System.IO"; version = "4.3.0"; sha256 = "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x"; }) 40 + (fetchNuGet { pname = "runtime.any.System.Reflection"; version = "4.3.0"; sha256 = "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly"; }) 41 + (fetchNuGet { pname = "runtime.any.System.Reflection.Extensions"; version = "4.3.0"; sha256 = "0zyri97dfc5vyaz9ba65hjj1zbcrzaffhsdlpxc9bh09wy22fq33"; }) 42 + (fetchNuGet { pname = "runtime.any.System.Reflection.Primitives"; version = "4.3.0"; sha256 = "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf"; }) 43 + (fetchNuGet { pname = "runtime.any.System.Resources.ResourceManager"; version = "4.3.0"; sha256 = "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl"; }) 44 + (fetchNuGet { pname = "runtime.any.System.Runtime"; version = "4.3.0"; sha256 = "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b"; }) 45 + (fetchNuGet { pname = "runtime.any.System.Runtime.Handles"; version = "4.3.0"; sha256 = "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x"; }) 46 + (fetchNuGet { pname = "runtime.any.System.Runtime.InteropServices"; version = "4.3.0"; sha256 = "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19"; }) 47 + (fetchNuGet { pname = "runtime.any.System.Text.Encoding"; version = "4.3.0"; sha256 = "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3"; }) 48 + (fetchNuGet { pname = "runtime.any.System.Text.Encoding.Extensions"; version = "4.3.0"; sha256 = "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8"; }) 49 + (fetchNuGet { pname = "runtime.any.System.Threading.Tasks"; version = "4.3.0"; sha256 = "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va"; }) 50 + (fetchNuGet { pname = "runtime.any.System.Threading.Timer"; version = "4.3.0"; sha256 = "0aw4phrhwqz9m61r79vyfl5la64bjxj8l34qnrcwb28v49fg2086"; }) 51 + (fetchNuGet { pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d"; }) 52 + (fetchNuGet { pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59"; }) 53 + (fetchNuGet { pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa"; }) 54 + (fetchNuGet { pname = "runtime.native.System"; version = "4.3.0"; sha256 = "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4"; }) 55 + (fetchNuGet { pname = "runtime.native.System.IO.Compression"; version = "4.3.0"; sha256 = "1vvivbqsk6y4hzcid27pqpm5bsi6sc50hvqwbcx8aap5ifrxfs8d"; }) 56 + (fetchNuGet { pname = "runtime.native.System.Net.Http"; version = "4.3.0"; sha256 = "1n6rgz5132lcibbch1qlf0g9jk60r0kqv087hxc0lisy50zpm7kk"; }) 57 + (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; sha256 = "1b61p6gw1m02cc1ry996fl49liiwky6181dzr873g9ds92zl326q"; }) 58 + (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97"; }) 59 + (fetchNuGet { pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0qyynf9nz5i7pc26cwhgi8j62ps27sqmf78ijcfgzab50z9g8ay3"; }) 60 + (fetchNuGet { pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "1klrs545awhayryma6l7g2pvnp9xy4z0r1i40r80zb45q3i9nbyf"; }) 61 + (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; sha256 = "10yc8jdrwgcl44b4g93f1ds76b176bajd3zqi2faf5rvh1vy9smi"; }) 62 + (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0zcxjv5pckplvkg0r6mw3asggm7aqzbdjimhvsasb0cgm59x09l3"; }) 63 + (fetchNuGet { pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0vhynn79ih7hw7cwjazn87rm9z9fj0rvxgzlab36jybgcpcgphsn"; }) 64 + (fetchNuGet { pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "160p68l2c7cqmyqjwxydcvgw7lvl1cr0znkw8fp24d1by9mqc8p3"; }) 65 + (fetchNuGet { pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy"; }) 66 + (fetchNuGet { pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5"; }) 67 + (fetchNuGet { pname = "runtime.unix.Microsoft.Win32.Primitives"; version = "4.3.0"; sha256 = "0y61k9zbxhdi0glg154v30kkq7f8646nif8lnnxbvkjpakggd5id"; }) 68 + (fetchNuGet { pname = "runtime.unix.System.Console"; version = "4.3.0"; sha256 = "1pfpkvc6x2if8zbdzg9rnc5fx51yllprl8zkm5npni2k50lisy80"; }) 69 + (fetchNuGet { pname = "runtime.unix.System.Diagnostics.Debug"; version = "4.3.0"; sha256 = "1lps7fbnw34bnh3lm31gs5c0g0dh7548wfmb8zz62v0zqz71msj5"; }) 70 + (fetchNuGet { pname = "runtime.unix.System.IO.FileSystem"; version = "4.3.0"; sha256 = "14nbkhvs7sji5r1saj2x8daz82rnf9kx28d3v2qss34qbr32dzix"; }) 71 + (fetchNuGet { pname = "runtime.unix.System.Net.Primitives"; version = "4.3.0"; sha256 = "0bdnglg59pzx9394sy4ic66kmxhqp8q8bvmykdxcbs5mm0ipwwm4"; }) 72 + (fetchNuGet { pname = "runtime.unix.System.Net.Sockets"; version = "4.3.0"; sha256 = "03npdxzy8gfv035bv1b9rz7c7hv0rxl5904wjz51if491mw0xy12"; }) 73 + (fetchNuGet { pname = "runtime.unix.System.Private.Uri"; version = "4.3.0"; sha256 = "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk"; }) 74 + (fetchNuGet { pname = "runtime.unix.System.Runtime.Extensions"; version = "4.3.0"; sha256 = "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p"; }) 75 + (fetchNuGet { pname = "Snapshooter"; version = "0.7.1"; sha256 = "04sn8pm1fgv8nasa6xi1wnm972xq9sq46lhc1p0945x44yvbrja9"; }) 76 + (fetchNuGet { pname = "Snapshooter.Xunit"; version = "0.7.1"; sha256 = "1z0v66nnaf7jj9b793x334z0da4llw6d4iddv4iy876q7a656rbx"; }) 77 + (fetchNuGet { pname = "System.AppContext"; version = "4.3.0"; sha256 = "1649qvy3dar900z3g817h17nl8jp4ka5vcfmsr05kh0fshn7j3ya"; }) 78 + (fetchNuGet { pname = "System.Buffers"; version = "4.3.0"; sha256 = "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy"; }) 79 + (fetchNuGet { pname = "System.Collections"; version = "4.0.11"; sha256 = "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6"; }) 80 + (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; }) 81 + (fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.3.0"; sha256 = "0wi10md9aq33jrkh2c24wr2n9hrpyamsdhsxdcnf43b7y86kkii8"; }) 82 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "7.0.0"; sha256 = "1n9122cy6v3qhsisc9lzwa1m1j62b8pi2678nsmnlyvfpk0zdagm"; }) 83 + (fetchNuGet { pname = "System.CommandLine"; version = "2.0.0-beta1.21308.1"; sha256 = "09p3pr8sfx2znlwiig0m74qswziih0gn85y9i6bww5xprk4612np"; }) 84 + (fetchNuGet { pname = "System.Console"; version = "4.3.0"; sha256 = "1flr7a9x920mr5cjsqmsy9wgnv3lvd0h1g521pdr1lkb2qycy7ay"; }) 85 + (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.0.11"; sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz"; }) 86 + (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.3.0"; sha256 = "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y"; }) 87 + (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "4.3.0"; sha256 = "0z6m3pbiy0qw6rn3n209rrzf9x1k4002zh90vwcrsym09ipm2liq"; }) 88 + (fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.0.1"; sha256 = "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x"; }) 89 + (fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.3.0"; sha256 = "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1"; }) 90 + (fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.3.0"; sha256 = "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4"; }) 91 + (fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.0.11"; sha256 = "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9"; }) 92 + (fetchNuGet { pname = "System.Formats.Asn1"; version = "6.0.0"; sha256 = "1vvr7hs4qzjqb37r0w1mxq7xql2b17la63jwvmgv65s1hj00g8r9"; }) 93 + (fetchNuGet { pname = "System.Globalization"; version = "4.0.11"; sha256 = "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d"; }) 94 + (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; }) 95 + (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.3.0"; sha256 = "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq"; }) 96 + (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.3.0"; sha256 = "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls"; }) 97 + (fetchNuGet { pname = "System.IO"; version = "4.1.0"; sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; }) 98 + (fetchNuGet { pname = "System.IO"; version = "4.3.0"; sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; }) 99 + (fetchNuGet { pname = "System.IO.Abstractions"; version = "13.2.47"; sha256 = "0s7f3cx99k6ci9a32q7sfm3s878awqs2k75c989kl7qx7i0g7v54"; }) 100 + (fetchNuGet { pname = "System.IO.Compression"; version = "4.3.0"; sha256 = "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz"; }) 101 + (fetchNuGet { pname = "System.IO.Compression.ZipFile"; version = "4.3.0"; sha256 = "1yxy5pq4dnsm9hlkg9ysh5f6bf3fahqqb6p8668ndy5c0lk7w2ar"; }) 102 + (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.0.1"; sha256 = "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1"; }) 103 + (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.3.0"; sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw"; }) 104 + (fetchNuGet { pname = "System.IO.FileSystem.AccessControl"; version = "5.0.0"; sha256 = "0ixl68plva0fsj3byv76bai7vkin86s6wyzr8vcav3szl862blvk"; }) 105 + (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.0.1"; sha256 = "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612"; }) 106 + (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.3.0"; sha256 = "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c"; }) 107 + (fetchNuGet { pname = "System.Linq"; version = "4.1.0"; sha256 = "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5"; }) 108 + (fetchNuGet { pname = "System.Linq"; version = "4.3.0"; sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; }) 109 + (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.1.0"; sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg"; }) 110 + (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.3.0"; sha256 = "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv"; }) 111 + (fetchNuGet { pname = "System.Memory"; version = "4.5.4"; sha256 = "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y"; }) 112 + (fetchNuGet { pname = "System.Net.Http"; version = "4.3.0"; sha256 = "1i4gc757xqrzflbk7kc5ksn20kwwfjhw9w7pgdkn19y3cgnl302j"; }) 113 + (fetchNuGet { pname = "System.Net.NameResolution"; version = "4.3.0"; sha256 = "15r75pwc0rm3vvwsn8rvm2krf929mjfwliv0mpicjnii24470rkq"; }) 114 + (fetchNuGet { pname = "System.Net.Primitives"; version = "4.3.0"; sha256 = "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii"; }) 115 + (fetchNuGet { pname = "System.Net.Sockets"; version = "4.3.0"; sha256 = "1ssa65k6chcgi6mfmzrznvqaxk8jp0gvl77xhf1hbzakjnpxspla"; }) 116 + (fetchNuGet { pname = "System.ObjectModel"; version = "4.0.12"; sha256 = "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj"; }) 117 + (fetchNuGet { pname = "System.ObjectModel"; version = "4.3.0"; sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2"; }) 118 + (fetchNuGet { pname = "System.Private.Uri"; version = "4.3.0"; sha256 = "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx"; }) 119 + (fetchNuGet { pname = "System.Reflection"; version = "4.1.0"; sha256 = "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9"; }) 120 + (fetchNuGet { pname = "System.Reflection"; version = "4.3.0"; sha256 = "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m"; }) 121 + (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.0.1"; sha256 = "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp"; }) 122 + (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.3.0"; sha256 = "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74"; }) 123 + (fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.0.1"; sha256 = "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0"; }) 124 + (fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.3.0"; sha256 = "0w1n67glpv8241vnpz1kl14sy7zlnw414aqwj4hcx5nd86f6994q"; }) 125 + (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.0.1"; sha256 = "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr"; }) 126 + (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.3.0"; sha256 = "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c"; }) 127 + (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.0.1"; sha256 = "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn"; }) 128 + (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.3.0"; sha256 = "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq"; }) 129 + (fetchNuGet { pname = "System.Reflection.Metadata"; version = "1.6.0"; sha256 = "1wdbavrrkajy7qbdblpbpbalbdl48q3h34cchz24gvdgyrlf15r4"; }) 130 + (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.0.1"; sha256 = "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28"; }) 131 + (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276"; }) 132 + (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.1.0"; sha256 = "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7"; }) 133 + (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.3.0"; sha256 = "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1"; }) 134 + (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.0.1"; sha256 = "0b4i7mncaf8cnai85jv3wnw6hps140cxz8vylv2bik6wyzgvz7bi"; }) 135 + (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.3.0"; sha256 = "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49"; }) 136 + (fetchNuGet { pname = "System.Runtime"; version = "4.1.0"; sha256 = "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m"; }) 137 + (fetchNuGet { pname = "System.Runtime"; version = "4.3.0"; sha256 = "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7"; }) 138 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; sha256 = "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc"; }) 139 + (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.1.0"; sha256 = "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z"; }) 140 + (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.0"; sha256 = "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60"; }) 141 + (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.0.1"; sha256 = "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g"; }) 142 + (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.3.0"; sha256 = "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8"; }) 143 + (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.1.0"; sha256 = "01kxqppx3dr3b6b286xafqilv4s2n0gqvfgzfd4z943ga9i81is1"; }) 144 + (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.3.0"; sha256 = "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j"; }) 145 + (fetchNuGet { pname = "System.Runtime.InteropServices.RuntimeInformation"; version = "4.3.0"; sha256 = "0q18r1sh4vn7bvqgd6dmqlw5v28flbpj349mkdish2vjyvmnb2ii"; }) 146 + (fetchNuGet { pname = "System.Runtime.Numerics"; version = "4.3.0"; sha256 = "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z"; }) 147 + (fetchNuGet { pname = "System.Runtime.Serialization.Primitives"; version = "4.1.1"; sha256 = "042rfjixknlr6r10vx2pgf56yming8lkjikamg3g4v29ikk78h7k"; }) 148 + (fetchNuGet { pname = "System.Security.AccessControl"; version = "5.0.0"; sha256 = "17n3lrrl6vahkqmhlpn3w20afgz09n7i6rv0r3qypngwi7wqdr5r"; }) 149 + (fetchNuGet { pname = "System.Security.AccessControl"; version = "6.0.0"; sha256 = "0a678bzj8yxxiffyzy60z2w1nczzpi8v97igr4ip3byd2q89dv58"; }) 150 + (fetchNuGet { pname = "System.Security.Claims"; version = "4.3.0"; sha256 = "0jvfn7j22l3mm28qjy3rcw287y9h65ha4m940waaxah07jnbzrhn"; }) 151 + (fetchNuGet { pname = "System.Security.Cryptography.Algorithms"; version = "4.3.0"; sha256 = "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml"; }) 152 + (fetchNuGet { pname = "System.Security.Cryptography.Cng"; version = "4.3.0"; sha256 = "1k468aswafdgf56ab6yrn7649kfqx2wm9aslywjam1hdmk5yypmv"; }) 153 + (fetchNuGet { pname = "System.Security.Cryptography.Csp"; version = "4.3.0"; sha256 = "1x5wcrddf2s3hb8j78cry7yalca4lb5vfnkrysagbn6r9x6xvrx1"; }) 154 + (fetchNuGet { pname = "System.Security.Cryptography.Encoding"; version = "4.3.0"; sha256 = "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32"; }) 155 + (fetchNuGet { pname = "System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0givpvvj8yc7gv4lhb6s1prq6p2c4147204a0wib89inqzd87gqc"; }) 156 + (fetchNuGet { pname = "System.Security.Cryptography.Pkcs"; version = "6.0.1"; sha256 = "0wswhbvm3gh06azg9k1zfvmhicpzlh7v71qzd4x5zwizq4khv7iq"; }) 157 + (fetchNuGet { pname = "System.Security.Cryptography.Primitives"; version = "4.3.0"; sha256 = "0pyzncsv48zwly3lw4f2dayqswcfvdwq2nz0dgwmi7fj3pn64wby"; }) 158 + (fetchNuGet { pname = "System.Security.Cryptography.X509Certificates"; version = "4.3.0"; sha256 = "0valjcz5wksbvijylxijjxb1mp38mdhv03r533vnx1q3ikzdav9h"; }) 159 + (fetchNuGet { pname = "System.Security.Cryptography.Xml"; version = "6.0.1"; sha256 = "15d0np1njvy2ywf0qzdqyjk5sjs4zbfxg917jrvlbfwrqpqxb5dj"; }) 160 + (fetchNuGet { pname = "System.Security.Principal"; version = "4.3.0"; sha256 = "12cm2zws06z4lfc4dn31iqv7072zyi4m910d4r6wm8yx85arsfxf"; }) 161 + (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.3.0"; sha256 = "00a0a7c40i3v4cb20s2cmh9csb5jv2l0frvnlzyfxh848xalpdwr"; }) 162 + (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "5.0.0"; sha256 = "1mpk7xj76lxgz97a5yg93wi8lj0l8p157a5d50mmjy3gbz1904q8"; }) 163 + (fetchNuGet { pname = "System.Text.Encoding"; version = "4.0.11"; sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw"; }) 164 + (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr"; }) 165 + (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.0.11"; sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; }) 166 + (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.3.0"; sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy"; }) 167 + (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "7.0.0"; sha256 = "1151hbyrcf8kyg1jz8k9awpbic98lwz9x129rg7zk1wrs6vjlpxl"; }) 168 + (fetchNuGet { pname = "System.Text.Json"; version = "7.0.2"; sha256 = "1i6yinxvbwdk5g5z9y8l4a5hj2gw3h9ijlz2f1c1ngyprnwz2ivf"; }) 169 + (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.1.0"; sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7"; }) 170 + (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.3.0"; sha256 = "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l"; }) 171 + (fetchNuGet { pname = "System.Threading"; version = "4.0.11"; sha256 = "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls"; }) 172 + (fetchNuGet { pname = "System.Threading"; version = "4.3.0"; sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34"; }) 173 + (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.0.11"; sha256 = "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5"; }) 174 + (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.3.0"; sha256 = "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7"; }) 175 + (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.0.0"; sha256 = "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr"; }) 176 + (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.3.0"; sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z"; }) 177 + (fetchNuGet { pname = "System.Threading.ThreadPool"; version = "4.3.0"; sha256 = "027s1f4sbx0y1xqw2irqn6x161lzj8qwvnh2gn78ciiczdv10vf1"; }) 178 + (fetchNuGet { pname = "System.Threading.Timer"; version = "4.3.0"; sha256 = "1nx773nsx6z5whv8kaa1wjh037id2f1cxhb69pvgv12hd2b6qs56"; }) 179 + (fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.0.11"; sha256 = "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5"; }) 180 + (fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.3.0"; sha256 = "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1"; }) 181 + (fetchNuGet { pname = "System.Xml.XDocument"; version = "4.0.11"; sha256 = "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18"; }) 182 + (fetchNuGet { pname = "System.Xml.XDocument"; version = "4.3.0"; sha256 = "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd"; }) 183 + (fetchNuGet { pname = "xunit"; version = "2.4.2"; sha256 = "0barl6x1qwx9srjxnanw9z0jik7lv1fp6cvmgqhk10aiv57dgqxm"; }) 184 + (fetchNuGet { pname = "xunit.abstractions"; version = "2.0.3"; sha256 = "00wl8qksgkxld76fgir3ycc5rjqv1sqds6x8yx40927q5py74gfh"; }) 185 + (fetchNuGet { pname = "xunit.analyzers"; version = "1.0.0"; sha256 = "0p4f24c462z49gvbh3k4z5ksa8ffa6p8abdgysqbbladl96im4c5"; }) 186 + (fetchNuGet { pname = "xunit.assert"; version = "2.4.1"; sha256 = "1imynzh80wxq2rp9sc4gxs4x1nriil88f72ilhj5q0m44qqmqpc6"; }) 187 + (fetchNuGet { pname = "xunit.assert"; version = "2.4.2"; sha256 = "0ifdry9qq3yaw2lfxdll30ljx1jkyhwwy3ydw6gd97y3kifr3k60"; }) 188 + (fetchNuGet { pname = "xunit.core"; version = "2.4.1"; sha256 = "1nnb3j4kzmycaw1g76ii4rfqkvg6l8gqh18falwp8g28h802019a"; }) 189 + (fetchNuGet { pname = "xunit.core"; version = "2.4.2"; sha256 = "1ir029igwm6b571lcm6585v5yxagy66rwrg26v4a1fnjq9dnh4cd"; }) 190 + (fetchNuGet { pname = "xunit.extensibility.core"; version = "2.4.1"; sha256 = "103qsijmnip2pnbhciqyk2jyhdm6snindg5z2s57kqf5pcx9a050"; }) 191 + (fetchNuGet { pname = "xunit.extensibility.core"; version = "2.4.2"; sha256 = "1h0a62xddsd82lljfjldn1nqy17imga905jb7j0ddr10wi8cqm62"; }) 192 + (fetchNuGet { pname = "xunit.extensibility.execution"; version = "2.4.1"; sha256 = "1pbilxh1gp2ywm5idfl0klhl4gb16j86ib4x83p8raql1dv88qia"; }) 193 + (fetchNuGet { pname = "xunit.extensibility.execution"; version = "2.4.2"; sha256 = "0r9gczqz4bc59cwl6d6wali6pvlw210i97chc1nlwn2qh383m54p"; }) 194 + (fetchNuGet { pname = "xunit.runner.visualstudio"; version = "2.4.5"; sha256 = "0y8w33ci80z8k580pp24mfnaw1r8ji0w3az543xxcz6aagax9zhs"; }) 195 + ]
+33
pkgs/by-name/cy/cyclonedx-cli/package.nix
··· 1 + { lib 2 + , buildDotnetModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildDotnetModule rec { 7 + pname = "cyclonedx-cli"; 8 + version = "0.25.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "CycloneDX"; 12 + repo = "cyclonedx-cli"; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-kAMSdUMr/NhsbMBViFJQlzgUNnxWgi/CLb3CW9OpWFo="; 15 + }; 16 + 17 + nugetDeps = ./deps.nix; 18 + 19 + preFixup = '' 20 + cd $out/bin 21 + find . ! -name 'cyclonedx' -type f -exec rm -f {} + 22 + ''; 23 + 24 + meta = with lib; { 25 + description = "CycloneDX CLI tool for SBOM analysis, merging, diffs and format conversions"; 26 + homepage = "https://github.com/CycloneDX/cyclonedx-cli"; 27 + changelog = "https://github.com/CycloneDX/cyclonedx-cli/releases/tag/v${version}"; 28 + maintainers = with maintainers; [ thillux ]; 29 + license = licenses.asl20; 30 + platforms = with platforms; (linux ++ darwin); 31 + mainProgram = "cyclonedx"; 32 + }; 33 + }
+23
pkgs/by-name/fi/fira/package.nix
··· 1 + { lib 2 + , symlinkJoin 3 + , fira-mono 4 + , fira-sans 5 + }: 6 + 7 + symlinkJoin rec { 8 + pname = "fira"; 9 + inherit (fira-mono) version; 10 + name = "${pname}-${version}"; 11 + 12 + paths = [ 13 + fira-mono 14 + fira-sans 15 + ]; 16 + 17 + meta = { 18 + description = "Fira font family including Fira Sans and Fira Mono"; 19 + homepage = "https://mozilla.github.io/Fira/"; 20 + license = lib.licenses.ofl; 21 + platforms = lib.platforms.all; 22 + }; 23 + }
+33
pkgs/by-name/gt/gtfocli/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + }: 6 + 7 + buildGoModule rec { 8 + pname = "gtfocli"; 9 + version = "0.0.4"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "cmd-tools"; 13 + repo = "gtfocli"; 14 + rev = "refs/tags/${version}"; 15 + hash = "sha256-fSk/OyeUffYZOkHXM1m/a9traDxdllYBieMEfsv910Q="; 16 + }; 17 + 18 + vendorHash = "sha256-yhN2Ve4mBw1HoC3zXYz+M8+2CimLGduG9lGTXi+rPNw="; 19 + 20 + ldflags = [ 21 + "-s" 22 + "-w" 23 + ]; 24 + 25 + meta = with lib; { 26 + description = "GTFO Command Line Interface for search binaries commands to bypass local security restrictions"; 27 + homepage = "https://github.com/cmd-tools/gtfocli"; 28 + changelog = "https://github.com/cmd-tools/gtfocli/releases/tag/${version}"; 29 + license = licenses.asl20; 30 + maintainers = with maintainers; [ fab ]; 31 + mainProgram = "gtfocli"; 32 + }; 33 + }
+2 -2
pkgs/by-name/hy/hypridle/package.nix
··· 12 12 13 13 stdenv.mkDerivation (finalAttrs: { 14 14 pname = "hypridle"; 15 - version = "0.1.1"; 15 + version = "0.1.2"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "hyprwm"; 19 19 repo = "hypridle"; 20 20 rev = "v${finalAttrs.version}"; 21 - hash = "sha256-YayFU0PZkwnKn1RSV3+i2HlSha/IFkG5osXcT0b/EUw="; 21 + hash = "sha256-7Ft5WZTMIjXOGgRCf31DZBwK6RK8xkeKlD5vFXz3gII="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+18 -5
pkgs/by-name/ma/mautrix-meta/package.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, olm, config }: 1 + { buildGoModule 2 + , config 3 + , fetchFromGitHub 4 + , lib 5 + , nixosTests 6 + , olm 7 + }: 2 8 3 9 buildGoModule rec { 4 10 pname = "mautrix-meta"; 5 - version = "0.2.0"; 11 + version = "0.3.0"; 6 12 7 13 subPackages = [ "." ]; 8 14 ··· 10 16 owner = "mautrix"; 11 17 repo = "meta"; 12 18 rev = "v${version}"; 13 - hash = "sha256-n0FpEHgnMdg6W5wahIT5HaF9AP/QYlLuUWJS+VrElgg="; 19 + hash = "sha256-QyVcy9rqj1n1Nn/+gBufd57LyEaXPyu0KQhAUTgNmBA="; 14 20 }; 15 21 16 22 buildInputs = [ olm ]; 17 23 18 - vendorHash = "sha256-GkgIang3/1u0ybznHgK1l84bEiCj6u4qf8G+HgLGr90="; 24 + vendorHash = "sha256-oQSjP1WY0LuxrMtIrvyKhize91wXJxTzWeH0Y3MsEL4="; 19 25 20 - doCheck = false; 26 + passthru = { 27 + tests = { 28 + inherit (nixosTests) 29 + mautrix-meta-postgres 30 + mautrix-meta-sqlite 31 + ; 32 + }; 33 + }; 21 34 22 35 meta = { 23 36 homepage = "https://github.com/mautrix/meta";
+35
pkgs/by-name/no/nomore403/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + }: 6 + 7 + buildGoModule rec { 8 + pname = "nomore403"; 9 + version = "1.0.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "devploit"; 13 + repo = "nomore403"; 14 + rev = "refs/tags/${version}"; 15 + hash = "sha256-qA1i8l2oBQQ5IF8ho3K2k+TAndUTFGwb2NfhyFqfKzU="; 16 + }; 17 + 18 + vendorHash = "sha256-IGnTbuaQH8A6aKyahHMd2RyFRh4WxZ3Vx/A9V3uelRg="; 19 + 20 + ldflags = [ 21 + "-s" 22 + "-w" 23 + "-X=main.Version=${version}" 24 + "-X=main.BuildDate=1970-01-01T00:00:00Z" 25 + ]; 26 + 27 + meta = with lib; { 28 + description = "Tool to bypass 403/40X response codes"; 29 + homepage = "https://github.com/devploit/nomore403"; 30 + changelog = "https://github.com/devploit/nomore403/releases/tag/${version}"; 31 + license = licenses.mit; 32 + maintainers = with maintainers; [ fab ]; 33 + mainProgram = "nomore403"; 34 + }; 35 + }
+48 -48
pkgs/by-name/rm/rmenu/Cargo.lock
··· 110 110 checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3" 111 111 dependencies = [ 112 112 "concurrent-queue", 113 - "event-listener 5.2.0", 113 + "event-listener 5.3.0", 114 114 "event-listener-strategy 0.5.1", 115 115 "futures-core", 116 116 "pin-project-lite", ··· 118 118 119 119 [[package]] 120 120 name = "async-executor" 121 - version = "1.9.1" 121 + version = "1.10.0" 122 122 source = "registry+https://github.com/rust-lang/crates.io-index" 123 - checksum = "10b3e585719c2358d2660232671ca8ca4ddb4be4ce8a1842d6c2dc8685303316" 123 + checksum = "5f98c37cf288e302c16ef6c8472aad1e034c6c84ce5ea7b8101c98eb4a802fee" 124 124 dependencies = [ 125 125 "async-lock 3.3.0", 126 126 "async-task", ··· 244 244 dependencies = [ 245 245 "proc-macro2", 246 246 "quote", 247 - "syn 2.0.57", 247 + "syn 2.0.58", 248 248 ] 249 249 250 250 [[package]] ··· 373 373 374 374 [[package]] 375 375 name = "bumpalo" 376 - version = "3.15.4" 376 + version = "3.16.0" 377 377 source = "registry+https://github.com/rust-lang/crates.io-index" 378 - checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" 378 + checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 379 379 380 380 [[package]] 381 381 name = "bytemuck" ··· 489 489 490 490 [[package]] 491 491 name = "cc" 492 - version = "1.0.90" 492 + version = "1.0.92" 493 493 source = "registry+https://github.com/rust-lang/crates.io-index" 494 - checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" 494 + checksum = "2678b2e3449475e95b0aa6f9b506a28e61b3dc8996592b983695e8ebb58a8b41" 495 495 496 496 [[package]] 497 497 name = "cesu8" ··· 545 545 "anstream", 546 546 "anstyle", 547 547 "clap_lex", 548 - "strsim 0.11.0", 548 + "strsim 0.11.1", 549 549 ] 550 550 551 551 [[package]] ··· 557 557 "heck 0.5.0", 558 558 "proc-macro2", 559 559 "quote", 560 - "syn 2.0.57", 560 + "syn 2.0.58", 561 561 ] 562 562 563 563 [[package]] ··· 642 642 source = "registry+https://github.com/rust-lang/crates.io-index" 643 643 checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" 644 644 dependencies = [ 645 - "getrandom 0.2.12", 645 + "getrandom 0.2.14", 646 646 "once_cell", 647 647 "tiny-keccak", 648 648 ] ··· 772 772 checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 773 773 dependencies = [ 774 774 "quote", 775 - "syn 2.0.57", 775 + "syn 2.0.58", 776 776 ] 777 777 778 778 [[package]] ··· 843 843 "ident_case", 844 844 "proc-macro2", 845 845 "quote", 846 - "syn 2.0.57", 846 + "syn 2.0.58", 847 847 ] 848 848 849 849 [[package]] ··· 876 876 dependencies = [ 877 877 "darling_core 0.20.8", 878 878 "quote", 879 - "syn 2.0.57", 879 + "syn 2.0.58", 880 880 ] 881 881 882 882 [[package]] ··· 968 968 "prettyplease", 969 969 "proc-macro2", 970 970 "quote", 971 - "syn 2.0.57", 971 + "syn 2.0.58", 972 972 ] 973 973 974 974 [[package]] ··· 1079 1079 "dioxus-core", 1080 1080 "proc-macro2", 1081 1081 "quote", 1082 - "syn 2.0.57", 1082 + "syn 2.0.58", 1083 1083 ] 1084 1084 1085 1085 [[package]] ··· 1183 1183 "darling 0.20.8", 1184 1184 "proc-macro2", 1185 1185 "quote", 1186 - "syn 2.0.57", 1186 + "syn 2.0.58", 1187 1187 ] 1188 1188 1189 1189 [[package]] ··· 1244 1244 1245 1245 [[package]] 1246 1246 name = "event-listener" 1247 - version = "5.2.0" 1247 + version = "5.3.0" 1248 1248 source = "registry+https://github.com/rust-lang/crates.io-index" 1249 - checksum = "2b5fb89194fa3cad959b833185b3063ba881dbfc7030680b314250779fb4cc91" 1249 + checksum = "6d9944b8ca13534cdfb2800775f8dd4902ff3fc75a50101466decadfdf322a24" 1250 1250 dependencies = [ 1251 1251 "concurrent-queue", 1252 1252 "parking", ··· 1269 1269 source = "registry+https://github.com/rust-lang/crates.io-index" 1270 1270 checksum = "332f51cb23d20b0de8458b86580878211da09bcd4503cb579c225b3d124cabb3" 1271 1271 dependencies = [ 1272 - "event-listener 5.2.0", 1272 + "event-listener 5.3.0", 1273 1273 "pin-project-lite", 1274 1274 ] 1275 1275 ··· 1378 1378 1379 1379 [[package]] 1380 1380 name = "freedesktop-desktop-entry" 1381 - version = "0.5.1" 1381 + version = "0.5.2" 1382 1382 source = "registry+https://github.com/rust-lang/crates.io-index" 1383 - checksum = "287f89b1a3d88dd04d2b65dfec39f3c381efbcded7b736456039c4ee49d54b17" 1383 + checksum = "c201444ddafb5506fe85265b48421664ff4617e3b7090ef99e42a0070c1aead0" 1384 1384 dependencies = [ 1385 1385 "dirs 3.0.2", 1386 1386 "gettext-rs", ··· 1495 1495 dependencies = [ 1496 1496 "proc-macro2", 1497 1497 "quote", 1498 - "syn 2.0.57", 1498 + "syn 2.0.58", 1499 1499 ] 1500 1500 1501 1501 [[package]] ··· 1645 1645 1646 1646 [[package]] 1647 1647 name = "getrandom" 1648 - version = "0.2.12" 1648 + version = "0.2.14" 1649 1649 source = "registry+https://github.com/rust-lang/crates.io-index" 1650 - checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 1650 + checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c" 1651 1651 dependencies = [ 1652 1652 "cfg-if", 1653 1653 "libc", ··· 1822 1822 "proc-macro-error", 1823 1823 "proc-macro2", 1824 1824 "quote", 1825 - "syn 2.0.57", 1825 + "syn 2.0.58", 1826 1826 ] 1827 1827 1828 1828 [[package]] ··· 2872 2872 checksum = "8d3928fb5db768cb86f891ff014f0144589297e3c6a1aba6ed7cecfdace270c7" 2873 2873 dependencies = [ 2874 2874 "proc-macro2", 2875 - "syn 2.0.57", 2875 + "syn 2.0.58", 2876 2876 ] 2877 2877 2878 2878 [[package]] ··· 3002 3002 source = "registry+https://github.com/rust-lang/crates.io-index" 3003 3003 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3004 3004 dependencies = [ 3005 - "getrandom 0.2.12", 3005 + "getrandom 0.2.14", 3006 3006 ] 3007 3007 3008 3008 [[package]] ··· 3050 3050 source = "registry+https://github.com/rust-lang/crates.io-index" 3051 3051 checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" 3052 3052 dependencies = [ 3053 - "getrandom 0.2.12", 3053 + "getrandom 0.2.14", 3054 3054 "libredox", 3055 3055 "thiserror", 3056 3056 ] ··· 3137 3137 3138 3138 [[package]] 3139 3139 name = "rmenu" 3140 - version = "1.2.0" 3140 + version = "1.2.1" 3141 3141 dependencies = [ 3142 3142 "cached 0.44.0", 3143 3143 "clap", ··· 3168 3168 3169 3169 [[package]] 3170 3170 name = "rmenu-plugin" 3171 - version = "0.0.1" 3171 + version = "0.0.2" 3172 3172 dependencies = [ 3173 3173 "bincode", 3174 3174 "clap", ··· 3358 3358 dependencies = [ 3359 3359 "proc-macro2", 3360 3360 "quote", 3361 - "syn 2.0.57", 3361 + "syn 2.0.58", 3362 3362 ] 3363 3363 3364 3364 [[package]] ··· 3374 3374 3375 3375 [[package]] 3376 3376 name = "serde_repr" 3377 - version = "0.1.18" 3377 + version = "0.1.19" 3378 3378 source = "registry+https://github.com/rust-lang/crates.io-index" 3379 - checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb" 3379 + checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 3380 3380 dependencies = [ 3381 3381 "proc-macro2", 3382 3382 "quote", 3383 - "syn 2.0.57", 3383 + "syn 2.0.58", 3384 3384 ] 3385 3385 3386 3386 [[package]] ··· 3594 3594 3595 3595 [[package]] 3596 3596 name = "strsim" 3597 - version = "0.11.0" 3597 + version = "0.11.1" 3598 3598 source = "registry+https://github.com/rust-lang/crates.io-index" 3599 - checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" 3599 + checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 3600 3600 3601 3601 [[package]] 3602 3602 name = "strum" ··· 3639 3639 3640 3640 [[package]] 3641 3641 name = "syn" 3642 - version = "2.0.57" 3642 + version = "2.0.58" 3643 3643 source = "registry+https://github.com/rust-lang/crates.io-index" 3644 - checksum = "11a6ae1e52eb25aab8f3fb9fca13be982a373b8f1157ca14b897a825ba4a2d35" 3644 + checksum = "44cfb93f38070beee36b3fef7d4f5a16f27751d94b187b666a5cc5e9b0d30687" 3645 3645 dependencies = [ 3646 3646 "proc-macro2", 3647 3647 "quote", ··· 3789 3789 dependencies = [ 3790 3790 "proc-macro2", 3791 3791 "quote", 3792 - "syn 2.0.57", 3792 + "syn 2.0.58", 3793 3793 ] 3794 3794 3795 3795 [[package]] ··· 3870 3870 dependencies = [ 3871 3871 "proc-macro2", 3872 3872 "quote", 3873 - "syn 2.0.57", 3873 + "syn 2.0.58", 3874 3874 ] 3875 3875 3876 3876 [[package]] ··· 3946 3946 dependencies = [ 3947 3947 "proc-macro2", 3948 3948 "quote", 3949 - "syn 2.0.57", 3949 + "syn 2.0.58", 3950 3950 ] 3951 3951 3952 3952 [[package]] ··· 4135 4135 source = "registry+https://github.com/rust-lang/crates.io-index" 4136 4136 checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" 4137 4137 dependencies = [ 4138 - "getrandom 0.2.12", 4138 + "getrandom 0.2.14", 4139 4139 ] 4140 4140 4141 4141 [[package]] ··· 4211 4211 "once_cell", 4212 4212 "proc-macro2", 4213 4213 "quote", 4214 - "syn 2.0.57", 4214 + "syn 2.0.58", 4215 4215 "wasm-bindgen-shared", 4216 4216 ] 4217 4217 ··· 4245 4245 dependencies = [ 4246 4246 "proc-macro2", 4247 4247 "quote", 4248 - "syn 2.0.57", 4248 + "syn 2.0.58", 4249 4249 "wasm-bindgen-backend", 4250 4250 "wasm-bindgen-shared", 4251 4251 ] ··· 4268 4268 4269 4269 [[package]] 4270 4270 name = "webbrowser" 4271 - version = "0.8.13" 4271 + version = "0.8.14" 4272 4272 source = "registry+https://github.com/rust-lang/crates.io-index" 4273 - checksum = "d1b04c569c83a9bb971dd47ec6fd48753315f4bf989b9b04a2e7ca4d7f0dc950" 4273 + checksum = "dd595fb70f33583ac61644820ebc144a26c96028b625b96cafcd861f4743fbc8" 4274 4274 dependencies = [ 4275 4275 "core-foundation", 4276 4276 "home", ··· 4416 4416 4417 4417 [[package]] 4418 4418 name = "window" 4419 - version = "0.0.0" 4419 + version = "0.0.1" 4420 4420 dependencies = [ 4421 4421 "anyhow", 4422 4422 "clap",
+7 -4
pkgs/by-name/rm/rmenu/package.nix
··· 11 11 }: 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "rmenu"; 14 - version = "1.2.0"; 14 + version = "1.2.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 rev = "v${version}"; 18 18 owner = "imgurbot12"; 19 19 repo = "rmenu"; 20 - hash = "sha256-mzY+M7GGJDxb8s7pusRDo/xfKE/S4uxPy4klRBjVGOA="; 20 + hash = "sha256-JHJZfDxrDi0rJSloPdOVdvo/XkrFhvshd7yZWn/zELU="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ ··· 65 65 # fix config and theme 66 66 mkdir -p $out/share/rmenu 67 67 cp -vf $src/rmenu/public/config.yaml $out/share/rmenu/config.yaml 68 - sed -i "s@~\/\.config\/rmenu\/themes@$out\/themes@g" $out/share/rmenu/config.yaml 69 - sed -i "s@~\/\.config\/rmenu@$out\/plugins@g" $out/share/rmenu/config.yaml 68 + substituteInPlace $out/share/rmenu/config.yaml --replace "~/.config/rmenu" "$out" 70 69 ln -sf $out/themes/dark.css $out/share/rmenu/style.css 71 70 ''; 72 71 73 72 preFixup = '' 73 + # rmenu expects the config to be in XDG_CONFIG_DIRS 74 + # shell script plugins called from rmenu binary expect the rmenu-build binary to be on the PATH, 75 + # which needs wrapping in temporary environments like shells and flakes 74 76 gappsWrapperArgs+=( 75 77 --suffix XDG_CONFIG_DIRS : "$out/share" 78 + --suffix PATH : "$out/bin" 76 79 ) 77 80 ''; 78 81
+32
pkgs/by-name/sb/sbom-utility/package.nix
··· 1 + { 2 + lib 3 + , buildGoModule 4 + , fetchFromGitHub 5 + }: 6 + 7 + buildGoModule rec { 8 + pname = "sbom-utility"; 9 + version = "0.15.0"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "CycloneDX"; 13 + repo = "sbom-utility"; 14 + rev = "refs/tags/v${version}"; 15 + hash = "sha256-tNLMrtJj1eeJ4sVhDRR24/KVI1HzZSRquiImuDTNZFI="; 16 + }; 17 + 18 + vendorHash = "sha256-EdzI5ypwZRksQVmcfGDUgEMa4CeAPcm237ZaKqmWQDY="; 19 + 20 + preCheck = '' 21 + cd test 22 + ''; 23 + 24 + meta = with lib; { 25 + description = "Utility that provides an API platform for validating, querying and managing BOM data"; 26 + homepage = "https://github.com/CycloneDX/sbom-utility"; 27 + changelog = "https://github.com/CycloneDX/sbom-utility/releases/tag/v${version}"; 28 + license = licenses.asl20; 29 + maintainers = with maintainers; [ thillux ]; 30 + mainProgram = "sbom-utility"; 31 + }; 32 + }
+7 -8
pkgs/by-name/so/solo5/package.nix
··· 63 63 runHook postCheck 64 64 ''; 65 65 66 - meta = { 66 + meta = with lib; { 67 67 description = "Sandboxed execution environment"; 68 68 homepage = "https://github.com/solo5/solo5"; 69 - license = lib.licenses.isc; 70 - maintainers = with lib.maintainers; [ ehmry ]; 71 - platforms = builtins.map ({arch, os}: "${arch}-${os}") 72 - (lib.cartesianProductOfSets { 73 - arch = [ "aarch64" "x86_64" ]; 74 - os = [ "freebsd" "genode" "linux" "openbsd" ]; 75 - }); 69 + license = licenses.isc; 70 + maintainers = [ maintainers.ehmry ]; 71 + platforms = mapCartesianProduct ({ arch, os }: "${arch}-${os}") { 72 + arch = [ "aarch64" "x86_64" ]; 73 + os = [ "freebsd" "genode" "linux" "openbsd" ]; 74 + }; 76 75 }; 77 76 78 77 }
+29
pkgs/by-name/ta/taskchampion-sync-server/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + }: 6 + rustPlatform.buildRustPackage rec { 7 + pname = "taskchampion-sync-server"; 8 + version = "0.4.1-unstable-2024-04-08"; 9 + src = fetchFromGitHub { 10 + owner = "GothenburgBitFactory"; 11 + repo = "taskchampion-sync-server"; 12 + rev = "31cb732f0697208ef9a8d325a79688612087185a"; 13 + fetchSubmodules = false; 14 + sha256 = "sha256-CUgXJcrCOenbw9ZDFBody5FAvpT1dsZBojJk3wOv9U4="; 15 + }; 16 + 17 + cargoHash = "sha256-TpShnVQ2eFNLXJzOTlWVaLqT56YkP4zCGCf3yVtNcvI="; 18 + 19 + # cargo tests fail when checkType="release" (default) 20 + checkType = "debug"; 21 + 22 + meta = { 23 + description = "Sync server for Taskwarrior 3"; 24 + license = lib.licenses.mit; 25 + homepage = "https://github.com/GothenburgBitFactory/taskchampion-sync-server"; 26 + maintainers = with lib.maintainers; [mlaradji]; 27 + mainProgram = "taskchampion-sync-server"; 28 + }; 29 + }
+83
pkgs/by-name/ta/taskwarrior3/package.nix
··· 1 + { 2 + rustPlatform, 3 + rustc, 4 + cargo, 5 + corrosion, 6 + lib, 7 + stdenv, 8 + fetchFromGitHub, 9 + cmake, 10 + libuuid, 11 + gnutls, 12 + python3, 13 + xdg-utils, 14 + installShellFiles, 15 + }: 16 + stdenv.mkDerivation rec { 17 + pname = "taskwarrior"; 18 + version = "3.0.0-unstable-2024-04-07"; 19 + src = fetchFromGitHub { 20 + owner = "GothenburgBitFactory"; 21 + repo = "taskwarrior"; 22 + rev = "fd306712b85dda3ea89de4e617aebeb98b2ede80"; 23 + fetchSubmodules = true; 24 + sha256 = "sha256-vzfHq/LHfnTx6CVGFCuO6W5aSqj1jVqldMdmyciSDDk="; 25 + }; 26 + 27 + postPatch = '' 28 + substituteInPlace src/commands/CmdNews.cpp \ 29 + --replace "xdg-open" "${lib.getBin xdg-utils}/bin/xdg-open" 30 + ''; 31 + 32 + nativeBuildInputs = [ 33 + cmake 34 + libuuid 35 + python3 36 + installShellFiles 37 + corrosion 38 + cargo 39 + rustc 40 + rustPlatform.cargoSetupHook 41 + ]; 42 + 43 + doCheck = true; 44 + preCheck = '' 45 + patchShebangs --build test 46 + ''; 47 + checkTarget = "test"; 48 + 49 + cargoDeps = rustPlatform.fetchCargoTarball { 50 + name = "${pname}-${version}-cargo-deps"; 51 + inherit src; 52 + sourceRoot = src.name; 53 + hash = "sha256-zQca/1tI/GUCekKhrg2iSL+h69SH6Ttsj3MqwDKj8HQ="; 54 + }; 55 + cargoRoot = "./"; 56 + preConfigure = '' 57 + export CMAKE_PREFIX_PATH="${corrosion}:$CMAKE_PREFIX_PATH" 58 + ''; 59 + 60 + postInstall = '' 61 + # ZSH is installed automatically from some reason, only bash and fish need 62 + # manual installation 63 + installShellCompletion --cmd task \ 64 + --bash $out/share/doc/task/scripts/bash/task.sh \ 65 + --fish $out/share/doc/task/scripts/fish/task.fish 66 + rm -r $out/share/doc/task/scripts/bash 67 + rm -r $out/share/doc/task/scripts/fish 68 + # Install vim and neovim plugin 69 + mkdir -p $out/share/vim-plugins 70 + mv $out/share/doc/task/scripts/vim $out/share/vim-plugins/task 71 + mkdir -p $out/share/nvim 72 + ln -s $out/share/vim-plugins/task $out/share/nvim/site 73 + ''; 74 + 75 + meta = with lib; { 76 + description = "Highly flexible command-line tool to manage TODO lists"; 77 + homepage = "https://taskwarrior.org"; 78 + license = licenses.mit; 79 + maintainers = with maintainers; [marcweber oxalica mlaradji]; 80 + mainProgram = "task"; 81 + platforms = platforms.unix; 82 + }; 83 + }
pkgs/data/fonts/fira-mono/default.nix pkgs/by-name/fi/fira-mono/package.nix
+8 -12
pkgs/data/fonts/fira/default.nix pkgs/by-name/fi/fira-sans/package.nix
··· 1 - { lib, stdenvNoCC, fetchFromGitHub }: 2 - 3 - stdenvNoCC.mkDerivation rec { 4 - pname = "fira"; 5 - version = "4.202"; 1 + { lib 2 + , stdenvNoCC 3 + , fira-mono 4 + }: 6 5 7 - src = fetchFromGitHub { 8 - owner = "mozilla"; 9 - repo = "Fira"; 10 - rev = version; 11 - hash = "sha256-HLReqgL0PXF5vOpwLN0GiRwnzkjGkEVEyOEV2Z4R0oQ="; 12 - }; 6 + stdenvNoCC.mkDerivation { 7 + pname = "fira-sans"; 8 + inherit (fira-mono) version src; 13 9 14 10 installPhase = '' 15 11 runHook preInstall 16 12 17 - install --mode=-x -Dt $out/share/fonts/opentype otf/*.otf 13 + install --mode=-x -Dt $out/share/fonts/opentype otf/FiraSans*.otf 18 14 19 15 runHook postInstall 20 16 '';
+3 -4
pkgs/data/fonts/junicode/tests.nix
··· 15 15 ''); 16 16 in 17 17 builtins.listToAttrs ( 18 - map 19 - texTest 20 - (lib.attrsets.cartesianProductOfSets { 18 + lib.mapCartesianProduct texTest 19 + { 21 20 tex = [ "xelatex" "lualatex" ]; 22 21 fonttype = [ "ttf" "otf" ]; 23 22 package = [ "junicode" ]; 24 23 file = [ ./test.tex ]; 25 - }) 24 + } 26 25 ++ 27 26 [ 28 27 (texTest {
+1 -2
pkgs/data/icons/catppuccin-cursors/default.nix
··· 9 9 palette = [ "Frappe" "Latte" "Macchiato" "Mocha" ]; 10 10 color = [ "Blue" "Dark" "Flamingo" "Green" "Lavender" "Light" "Maroon" "Mauve" "Peach" "Pink" "Red" "Rosewater" "Sapphire" "Sky" "Teal" "Yellow" ]; 11 11 }; 12 - product = lib.attrsets.cartesianProductOfSets dimensions; 13 12 variantName = { palette, color }: (lib.strings.toLower palette) + color; 14 - variants = map variantName product; 13 + variants = lib.mapCartesianProduct variantName dimensions; 15 14 in 16 15 stdenvNoCC.mkDerivation rec { 17 16 pname = "catppuccin-cursors";
+1 -2
pkgs/data/icons/comixcursors/default.nix
··· 7 7 thickness = [ "" "Slim_" ]; # Thick or slim edges. 8 8 handedness = [ "" "LH_" ]; # Right- or left-handed. 9 9 }; 10 - product = lib.cartesianProductOfSets dimensions; 11 10 variantName = 12 11 { color, opacity, thickness, handedness }: 13 12 "${handedness}${opacity}${thickness}${color}"; 14 13 variants = 15 14 # (The order of this list is already good looking enough to show in the 16 15 # meta.longDescription.) 17 - map variantName product; 16 + lib.mapCartesianProduct variantName dimensions; 18 17 in 19 18 stdenvNoCC.mkDerivation rec { 20 19 pname = "comixcursors";
+5 -1
pkgs/development/compilers/crystal/build-package.nix
··· 26 26 # The default `crystal build` options can be overridden with { foo.options = [ "--optionname" ]; } 27 27 , crystalBinaries ? { } 28 28 , enableParallelBuilding ? true 29 + # Copy all shards dependencies instead of symlinking and add write permissions 30 + # to make environment more local-like 31 + , copyShardDeps ? false 29 32 , ... 30 33 }@args: 31 34 ··· 78 81 ++ lib.optional (lockFile != null) "cp ${lockFile} ./shard.lock" 79 82 ++ lib.optionals (shardsFile != null) [ 80 83 "test -e lib || mkdir lib" 81 - "for d in ${crystalLib}/*; do ln -s $d lib/; done" 84 + (if copyShardDeps then "for d in ${crystalLib}/*; do cp -r $d/ lib/; done; chmod -R +w lib/" 85 + else "for d in ${crystalLib}/*; do ln -s $d lib/; done") 82 86 "cp shard.lock lib/.shards.info" 83 87 ] 84 88 ++ [ "runHook postConfigure" ]
+9 -9
pkgs/development/compilers/graalvm/community-edition/graalpy/hashes.nix
··· 1 1 # Generated by update.sh script 2 2 { 3 - "version" = "24.0.0"; 3 + "version" = "24.0.1"; 4 4 "hashes" = { 5 5 "aarch64-linux" = { 6 - sha256 = "1hz56nvl7av3xvwm7bxrzyri289h6hbawxsacn4zr7nm1snjn7i0"; 7 - url = "https://github.com/oracle/graalpython/releases/download/graal-24.0.0/graalpy-community-24.0.0-linux-aarch64.tar.gz"; 6 + sha256 = "09zrp1l80294p4dzkfcvabs7l2hbs6500j1cibhdphcghjwip2l7"; 7 + url = "https://github.com/oracle/graalpython/releases/download/graal-24.0.1/graalpy-community-24.0.1-linux-aarch64.tar.gz"; 8 8 }; 9 9 "x86_64-linux" = { 10 - sha256 = "1ngqwrx1bc22jm12gmwqmqjfhhccpim1pai6885vg5xqsvc94y57"; 11 - url = "https://github.com/oracle/graalpython/releases/download/graal-24.0.0/graalpy-community-24.0.0-linux-amd64.tar.gz"; 10 + sha256 = "06m4dw0mnhlnm764xzip3nxzzs8yxbbps2f1cs75zfyakmhpa5c2"; 11 + url = "https://github.com/oracle/graalpython/releases/download/graal-24.0.1/graalpy-community-24.0.1-linux-amd64.tar.gz"; 12 12 }; 13 13 "x86_64-darwin" = { 14 - sha256 = "07bh2fgk3l7vpws91ah48dsbrvvlq8wzfq88wq6ywilbikmnp0bw"; 15 - url = "https://github.com/oracle/graalpython/releases/download/graal-24.0.0/graalpy-community-24.0.0-macos-amd64.tar.gz"; 14 + sha256 = "0x36l03fqkrjdazv4q50dpilx8y0jr27wsgvy8wqbdzjvbcf7rd4"; 15 + url = "https://github.com/oracle/graalpython/releases/download/graal-24.0.1/graalpy-community-24.0.1-macos-amd64.tar.gz"; 16 16 }; 17 17 "aarch64-darwin" = { 18 - sha256 = "00kljb24835l51jrnzdfblbhf2psdfw3wg00rllcdhpmiji40mbz"; 19 - url = "https://github.com/oracle/graalpython/releases/download/graal-24.0.0/graalpy-community-24.0.0-macos-aarch64.tar.gz"; 18 + sha256 = "1mgpspjxs1s8rzsyw760xlm21zlx7gflgqvcslw3xfq59bf76npw"; 19 + url = "https://github.com/oracle/graalpython/releases/download/graal-24.0.1/graalpy-community-24.0.1-macos-aarch64.tar.gz"; 20 20 }; 21 21 }; 22 22 }
+4 -5
pkgs/development/compilers/ligo/default.nix
··· 15 15 16 16 ocamlPackages.buildDunePackage rec { 17 17 pname = "ligo"; 18 - version = "1.4.0"; 18 + version = "1.6.0"; 19 19 src = fetchFromGitLab { 20 20 owner = "ligolang"; 21 21 repo = "ligo"; 22 22 rev = version; 23 - sha256 = "sha256-N2RkeKJ+lEyNJwpmF5sORmOkDhNmTYRYAgvyR7Pc5EI="; 23 + hash = "sha256-ZPHOgozuUij9+4YXZTnn1koddQEQZe/yrpb+OPHO+nA="; 24 24 fetchSubmodules = true; 25 25 }; 26 26 ··· 29 29 30 30 # This is a hack to work around the hack used in the dune files 31 31 OPAM_SWITCH_PREFIX = "${tezos-rust-libs}"; 32 - 33 - strictDeps = true; 34 32 35 33 nativeBuildInputs = [ 36 34 ocaml-crunch ··· 98 96 bls12-381 99 97 bls12-381-signature 100 98 ptime 101 - mtime_1 99 + mtime 102 100 lwt_log 103 101 secp256k1-internal 104 102 resto ··· 112 110 simple-diff 113 111 seqes 114 112 stdint 113 + tezt 115 114 ] ++ lib.optionals stdenv.isDarwin [ 116 115 darwin.apple_sdk.frameworks.Security 117 116 ];
+2 -1
pkgs/development/coq-modules/CoLoR/default.nix
··· 5 5 owner = "fblanqui"; 6 6 inherit version; 7 7 defaultVersion = with lib.versions; lib.switch coq.version [ 8 - {case = range "8.14" "8.18"; out = "1.8.4"; } 8 + {case = range "8.14" "8.19"; out = "1.8.5"; } 9 9 {case = range "8.12" "8.16"; out = "1.8.2"; } 10 10 {case = range "8.10" "8.11"; out = "1.7.0"; } 11 11 {case = range "8.8" "8.9"; out = "1.6.0"; } 12 12 {case = range "8.6" "8.7"; out = "1.4.0"; } 13 13 ] null; 14 14 15 + release."1.8.5".sha256 = "sha256-zKAyj6rKAasDF+iKExmpVHMe2WwgAwv2j1mmiVAl7ys="; 15 16 release."1.8.4".sha256 = "sha256-WlRiaLgnFFW5AY0z6EzdP1mevNe1GHsik6wULJLN4k0="; 16 17 release."1.8.3".sha256 = "sha256-mMUzIorkQ6WWQBJLk1ioUNwAdDdGHJyhenIvkAjALVU="; 17 18 release."1.8.2".sha256 = "sha256:1gvx5cxm582793vxzrvsmhxif7px18h9xsb2jljy2gkphdmsnpqj";
+24
pkgs/development/ocaml-modules/clap/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildDunePackage 4 + }: 5 + 6 + buildDunePackage rec { 7 + pname = "clap"; 8 + version = "0.3.0"; 9 + 10 + minimalOCamlVersion = "4.07"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "rbardou"; 14 + repo = pname; 15 + rev = version; 16 + hash = "sha256-IEol27AVYs55ntvNprBxOk3/EsBKAdPkF3Td3w9qOJg="; 17 + }; 18 + 19 + meta = { 20 + description = "Command-Line Argument Parsing, imperative style with a consumption mechanism"; 21 + license = lib.licenses.mit; 22 + }; 23 + } 24 +
+4 -14
pkgs/development/ocaml-modules/data-encoding/default.nix
··· 2 2 , fetchFromGitLab 3 3 , buildDunePackage 4 4 , ppx_hash 5 + , bigstringaf 5 6 , either 6 7 , ezjsonm 7 8 , zarith ··· 16 17 17 18 buildDunePackage rec { 18 19 pname = "data-encoding"; 19 - version = "0.7.1"; 20 + inherit (json-data-encoding) src version; 20 21 21 - duneVersion = "3"; 22 22 minimalOCamlVersion = "4.10"; 23 23 24 - src = fetchFromGitLab { 25 - owner = "nomadic-labs"; 26 - repo = "data-encoding"; 27 - rev = "v${version}"; 28 - hash = "sha256-V3XiCCtoU+srOI+KVSJshtaSJLBJ4m4o10GpBfdYKCU="; 29 - }; 30 - 31 24 propagatedBuildInputs = [ 25 + bigstringaf 32 26 either 33 27 ezjsonm 34 28 ppx_hash ··· 39 33 json-data-encoding-bson 40 34 ]; 41 35 42 - checkInputs = [ 43 - alcotest 44 - crowbar 36 + buildInputs = [ 45 37 ppx_expect 46 38 ]; 47 - 48 - doCheck = true; 49 39 50 40 meta = { 51 41 homepage = "https://gitlab.com/nomadic-labs/data-encoding";
+2 -3
pkgs/development/ocaml-modules/index/default.nix
··· 6 6 7 7 buildDunePackage rec { 8 8 pname = "index"; 9 - version = "1.6.1"; 9 + version = "1.6.2"; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/mirage/index/releases/download/${version}/index-${version}.tbz"; 13 - hash = "sha256-rPwNzqkWqDak2mDTDIBqIvachY1vfOIzFmwaXjZea+4="; 13 + hash = "sha256-k4iDUJik7UTuztBw7YaFXASd8SqYMR1JgLm3JOyriGA="; 14 14 }; 15 15 16 16 minimalOCamlVersion = "4.08"; 17 - duneVersion = "3"; 18 17 19 18 buildInputs = [ 20 19 stdlib-shims
+1 -1
pkgs/development/ocaml-modules/irmin/chunk.nix
··· 3 3 buildDunePackage rec { 4 4 5 5 pname = "irmin-chunk"; 6 - inherit (irmin) version src strictDeps; 6 + inherit (irmin) version src; 7 7 8 8 propagatedBuildInputs = [ irmin fmt logs lwt ]; 9 9
+1 -1
pkgs/development/ocaml-modules/irmin/containers.nix
··· 6 6 buildDunePackage { 7 7 pname = "irmin-containers"; 8 8 9 - inherit (ppx_irmin) src version strictDeps; 9 + inherit (ppx_irmin) src version; 10 10 11 11 nativeBuildInputs = [ 12 12 ppx_irmin
+1 -1
pkgs/development/ocaml-modules/irmin/default.nix
··· 7 7 buildDunePackage { 8 8 pname = "irmin"; 9 9 10 - inherit (ppx_irmin) src version strictDeps; 10 + inherit (ppx_irmin) src version; 11 11 12 12 minimalOCamlVersion = "4.10"; 13 13
+1 -1
pkgs/development/ocaml-modules/irmin/fs.nix
··· 6 6 7 7 pname = "irmin-fs"; 8 8 9 - inherit (irmin) version src strictDeps; 9 + inherit (irmin) version src; 10 10 11 11 propagatedBuildInputs = [ irmin astring logs lwt ]; 12 12
+1 -1
pkgs/development/ocaml-modules/irmin/git.nix
··· 9 9 10 10 pname = "irmin-git"; 11 11 12 - inherit (irmin) version src strictDeps; 12 + inherit (irmin) version src; 13 13 14 14 propagatedBuildInputs = [ 15 15 git
-25
pkgs/development/ocaml-modules/irmin/http.nix
··· 1 - { lib, buildDunePackage, astring, cohttp-lwt, cohttp-lwt-unix, irmin, webmachine 2 - , fmt, jsonm, logs, lwt, uri 3 - , git-unix, irmin-git, irmin-test, irmin-fs, digestif 4 - , cacert 5 - }: 6 - 7 - buildDunePackage rec { 8 - 9 - pname = "irmin-http"; 10 - 11 - inherit (irmin) version src strictDeps; 12 - 13 - propagatedBuildInputs = [ astring cohttp-lwt cohttp-lwt-unix fmt jsonm logs lwt uri irmin webmachine ]; 14 - 15 - checkInputs = [ 16 - digestif git-unix irmin-git irmin-test irmin-fs cacert 17 - ]; 18 - 19 - doCheck = true; 20 - 21 - meta = irmin.meta // { 22 - description = "HTTP client and server for Irmin"; 23 - }; 24 - 25 - }
+1 -1
pkgs/development/ocaml-modules/irmin/mirage-git.nix
··· 6 6 buildDunePackage { 7 7 pname = "irmin-mirage-git"; 8 8 9 - inherit (irmin-mirage) version src strictDeps; 9 + inherit (irmin-mirage) version src; 10 10 11 11 propagatedBuildInputs = [ 12 12 irmin-mirage
+1 -1
pkgs/development/ocaml-modules/irmin/mirage-graphql.nix
··· 5 5 buildDunePackage { 6 6 pname = "irmin-mirage-graphql"; 7 7 8 - inherit (irmin-mirage) version src strictDeps; 8 + inherit (irmin-mirage) version src; 9 9 10 10 propagatedBuildInputs = [ 11 11 irmin-mirage
+1 -1
pkgs/development/ocaml-modules/irmin/mirage.nix
··· 3 3 buildDunePackage { 4 4 pname = "irmin-mirage"; 5 5 6 - inherit (irmin) version src strictDeps; 6 + inherit (irmin) version src; 7 7 8 8 propagatedBuildInputs = [ 9 9 irmin fmt ptime mirage-clock
+1 -1
pkgs/development/ocaml-modules/irmin/pack.nix
··· 8 8 9 9 pname = "irmin-pack"; 10 10 11 - inherit (irmin) version src strictDeps; 11 + inherit (irmin) version src; 12 12 13 13 nativeBuildInputs = [ ppx_irmin ]; 14 14
+2 -2
pkgs/development/ocaml-modules/irmin/ppx.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "ppx_irmin"; 5 - version = "3.7.2"; 5 + version = "3.9.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/mirage/irmin/releases/download/${version}/irmin-${version}.tbz"; 9 - hash = "sha256-aqW6TGoCM3R9S9OrOW8rOjO7gPnY7UoXjIOgNQM8DlI="; 9 + hash = "sha256-jgc6vhtf+1ttWMMmBsnX2rwyxTUBdWvoCpLtR3etUaA="; 10 10 }; 11 11 12 12 minimalOCamlVersion = "4.10";
+4 -3
pkgs/development/ocaml-modules/irmin/test.nix
··· 1 1 { buildDunePackage, irmin, ppx_irmin, mtime, astring, fmt, jsonm, logs, lwt 2 2 , metrics-unix, ocaml-syntax-shims, cmdliner, metrics, alcotest-lwt 3 - , hex, vector 3 + , hex, vector, qcheck-alcotest 4 4 }: 5 5 6 6 buildDunePackage { 7 7 8 8 pname = "irmin-test"; 9 9 10 - inherit (irmin) version src strictDeps; 10 + inherit (irmin) version src; 11 11 12 12 nativeBuildInputs = [ ppx_irmin ]; 13 13 ··· 27 27 metrics 28 28 ]; 29 29 30 - checkInputs = [ hex vector ]; 30 + doCheck = true; 31 + checkInputs = [ hex qcheck-alcotest vector ]; 31 32 32 33 meta = irmin.meta // { 33 34 description = "Irmin test suite";
+1 -1
pkgs/development/ocaml-modules/irmin/tezos.nix
··· 6 6 buildDunePackage rec { 7 7 pname = "irmin-tezos"; 8 8 9 - inherit (irmin) version src strictDeps; 9 + inherit (irmin) version src; 10 10 11 11 propagatedBuildInputs = [ 12 12 irmin
-2
pkgs/development/ocaml-modules/json-data-encoding/bson.nix
··· 5 5 6 6 inherit (json-data-encoding) version src doCheck; 7 7 8 - duneVersion = "3"; 9 - 10 8 propagatedBuildInputs = [ 11 9 json-data-encoding 12 10 ocplib-endian
+6 -13
pkgs/development/ocaml-modules/json-data-encoding/default.nix
··· 1 - { lib, fetchFromGitLab, buildDunePackage, uri, crowbar, alcotest }: 1 + { lib, fetchFromGitLab, buildDunePackage, hex, uri }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "json-data-encoding"; 5 - version = "0.12.1"; 5 + version = "1.0.1"; 6 6 minimalOCamlVersion = "4.10"; 7 - duneVersion = "3"; 8 7 src = fetchFromGitLab { 9 8 owner = "nomadic-labs"; 10 - repo = "json-data-encoding"; 11 - rev = version; 12 - hash = "sha256-ticulOKiFNQIZNFOQE9UQOw/wqRfygQwLVIc4kkmwg4="; 9 + repo = "data-encoding"; 10 + rev = "v${version}"; 11 + hash = "sha256-KoA4xX4tNyi6bX5kso/Wof1LA7431EXJ34eD5X4jnd8="; 13 12 }; 14 13 15 14 propagatedBuildInputs = [ 15 + hex 16 16 uri 17 17 ]; 18 - 19 - checkInputs = [ 20 - crowbar 21 - alcotest 22 - ]; 23 - 24 - doCheck = true; 25 18 26 19 meta = { 27 20 homepage = "https://gitlab.com/nomadic-labs/json-data-encoding";
+5 -4
pkgs/development/ocaml-modules/mirage-kv/default.nix
··· 1 1 { lib, fetchurl, buildDunePackage 2 2 , fmt 3 3 , lwt 4 + , optint 5 + , ptime 4 6 , alcotest 5 7 }: 6 8 7 9 buildDunePackage rec { 8 10 pname = "mirage-kv"; 9 - version = "4.0.1"; 11 + version = "6.1.1"; 10 12 11 - duneVersion = "3"; 12 13 minimalOCamlVersion = "4.08"; 13 14 14 15 src = fetchurl { 15 16 url = "https://github.com/mirage/mirage-kv/releases/download/v${version}/mirage-kv-${version}.tbz"; 16 - hash = "sha256-p6i4zUVgxtTnUiBIjb8W6u9xRTczVl4WwfFcl5tVqnE="; 17 + hash = "sha256-fNXNlaDpb5zUA2rTwi5h1j4v4LQmovxG+Am6u+1guPQ="; 17 18 }; 18 19 19 - propagatedBuildInputs = [ fmt lwt ]; 20 + propagatedBuildInputs = [ fmt lwt optint ptime ]; 20 21 21 22 doCheck = true; 22 23 checkInputs = [ alcotest ];
+1 -1
pkgs/development/ocaml-modules/ocaml-freestanding/default.nix
··· 70 70 maintainers = [ maintainers.sternenseemann ]; 71 71 homepage = "https://github.com/mirage/ocaml-freestanding"; 72 72 platforms = builtins.map ({ arch, os }: "${arch}-${os}") 73 - (cartesianProductOfSets { 73 + (cartesianProduct { 74 74 arch = [ "aarch64" "x86_64" ]; 75 75 os = [ "linux" ]; 76 76 } ++ [
-1
pkgs/development/ocaml-modules/progress/default.nix
··· 7 7 pname = "progress"; 8 8 9 9 minimalOCamlVersion = "4.08"; 10 - duneVersion = "3"; 11 10 12 11 inherit (terminal) version src; 13 12
+3 -4
pkgs/development/ocaml-modules/terminal/default.nix
··· 5 5 6 6 buildDunePackage rec { 7 7 pname = "terminal"; 8 - version = "0.2.1"; 8 + version = "0.2.2"; 9 9 10 10 minimalOCamlVersion = "4.03"; 11 - duneVersion = "3"; 12 11 13 12 src = fetchurl { 14 - url = "https://github.com/CraigFe/progress/releases/download/${version}/terminal-${version}.tbz"; 15 - hash = "sha256:0vjqkvmpyi8kvmb4vrx3f0994rph8i9pvlrz1dyi126vlb2zbrvs"; 13 + url = "https://github.com/CraigFe/progress/releases/download/${version}/progress-${version}.tbz"; 14 + hash = "sha256-M0HCGSOiHNa1tc+p7DmB9ZVyw2eUD+XgJFBTPftBELU="; 16 15 }; 17 16 18 17 propagatedBuildInputs = [ stdlib-shims uutf uucp ];
+34
pkgs/development/ocaml-modules/tezt/default.nix
··· 1 + { lib 2 + , fetchFromGitLab 3 + , buildDunePackage 4 + , clap 5 + , ezjsonm 6 + , lwt 7 + , re 8 + }: 9 + 10 + buildDunePackage rec { 11 + pname = "tezt"; 12 + version = "4.0.0"; 13 + 14 + minimalOCamlVersion = "4.12"; 15 + 16 + src = fetchFromGitLab { 17 + owner = "nomadic-labs"; 18 + repo = pname; 19 + rev = version; 20 + hash = "sha256-waFjE/yR+XAJOew1YsCnbvsJR8oe9gflyVj4yXAvNuM="; 21 + }; 22 + 23 + propagatedBuildInputs = [ 24 + clap 25 + ezjsonm 26 + lwt 27 + re 28 + ]; 29 + 30 + meta = { 31 + description = "Test framework for unit tests, integration tests, and regression tests"; 32 + license = lib.licenses.mit; 33 + }; 34 + }
+23 -19
pkgs/development/python-modules/accuweather/default.nix
··· 1 - { lib 2 - , aiohttp 3 - , aioresponses 4 - , buildPythonPackage 5 - , fetchFromGitHub 6 - , orjson 7 - , pytest-asyncio 8 - , pytest-error-for-skips 9 - , pytestCheckHook 10 - , pythonOlder 1 + { 2 + lib, 3 + aiohttp, 4 + aioresponses, 5 + buildPythonPackage, 6 + fetchFromGitHub, 7 + orjson, 8 + pytest-asyncio, 9 + pytest-error-for-skips, 10 + pytestCheckHook, 11 + pythonOlder, 12 + setuptools, 13 + syrupy, 11 14 }: 12 15 13 16 buildPythonPackage rec { 14 17 pname = "accuweather"; 15 - version = "2.1.1"; 16 - format = "setuptools"; 18 + version = "3.0.0"; 19 + pyproject = true; 17 20 18 - disabled = pythonOlder "3.9"; 21 + disabled = pythonOlder "3.11"; 19 22 20 23 src = fetchFromGitHub { 21 24 owner = "bieniu"; 22 - repo = pname; 25 + repo = "accuweather"; 23 26 rev = "refs/tags/${version}"; 24 - hash = "sha256-hbmeQnxVhBbXKHNdeXzAwRnMKBNvKsdfHg8MzALinhc="; 27 + hash = "sha256-hnKwK0I8C8Xh7yn4yk2DqowqgyZYDB22IEllm5MeIGo="; 25 28 }; 26 29 27 - propagatedBuildInputs = [ 30 + build-system = [ setuptools ]; 31 + 32 + dependencies = [ 28 33 aiohttp 29 34 orjson 30 35 ]; ··· 34 39 pytest-asyncio 35 40 pytest-error-for-skips 36 41 pytestCheckHook 42 + syrupy 37 43 ]; 38 44 39 - pythonImportsCheck = [ 40 - "accuweather" 41 - ]; 45 + pythonImportsCheck = [ "accuweather" ]; 42 46 43 47 meta = with lib; { 44 48 description = "Python wrapper for getting weather data from AccuWeather servers";
+19 -24
pkgs/development/python-modules/aiounifi/default.nix
··· 1 - { lib 2 - , aiohttp 3 - , aioresponses 4 - , buildPythonPackage 5 - , fetchFromGitHub 6 - , orjson 7 - , pytest-aiohttp 8 - , pytest-asyncio 9 - , pytestCheckHook 10 - , pythonOlder 11 - , segno 12 - , setuptools 13 - , trustme 1 + { 2 + lib, 3 + aiohttp, 4 + aioresponses, 5 + buildPythonPackage, 6 + fetchFromGitHub, 7 + orjson, 8 + pytest-aiohttp, 9 + pytest-asyncio, 10 + pytestCheckHook, 11 + pythonOlder, 12 + segno, 13 + setuptools, 14 + trustme, 14 15 }: 15 16 16 17 buildPythonPackage rec { 17 18 pname = "aiounifi"; 18 - version = "74"; 19 + version = "75"; 19 20 pyproject = true; 20 21 21 22 disabled = pythonOlder "3.11"; ··· 24 25 owner = "Kane610"; 25 26 repo = "aiounifi"; 26 27 rev = "refs/tags/v${version}"; 27 - hash = "sha256-5xxgpbnTqR8AWUvRQJiXGJECn0neV8QQyjYKw09sqZg="; 28 + hash = "sha256-IPm3/i+JJpjVfRFq+Yq1mfajHL/mOARk5koyy/t37NQ="; 28 29 }; 29 30 30 31 postPatch = '' ··· 35 36 sed -i '/--cov=/d' pyproject.toml 36 37 ''; 37 38 38 - build-system = [ 39 - setuptools 40 - ]; 39 + build-system = [ setuptools ]; 41 40 42 41 dependencies = [ 43 42 aiohttp ··· 53 52 trustme 54 53 ]; 55 54 56 - pytestFlagsArray = [ 57 - "--asyncio-mode=auto" 58 - ]; 55 + pytestFlagsArray = [ "--asyncio-mode=auto" ]; 59 56 60 - pythonImportsCheck = [ 61 - "aiounifi" 62 - ]; 57 + pythonImportsCheck = [ "aiounifi" ]; 63 58 64 59 meta = with lib; { 65 60 description = "Python library for communicating with Unifi Controller API";
+19 -12
pkgs/development/python-modules/aiozeroconf/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , netifaces 5 - , isPy27 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + netifaces, 6 + pythonOlder, 7 + setuptools, 6 8 }: 7 9 8 10 buildPythonPackage rec { 9 11 pname = "aiozeroconf"; 10 12 version = "0.1.8"; 11 - format = "setuptools"; 12 - disabled = isPy27; 13 + pyproject = true; 14 + 15 + disabled = pythonOlder "3.7"; 13 16 14 17 src = fetchPypi { 15 18 inherit pname version; 16 - sha256 = "074plydm7sd113p3k0siihwwz62d3r42q3g83vqaffp569msknqh"; 19 + hash = "sha256-ENupazLlOqfwHugNLEgeTZjPOYxRgznuCKHpU5unlxw="; 17 20 }; 18 21 19 - propagatedBuildInputs = [ netifaces ]; 22 + build-system = [ setuptools ]; 23 + 24 + dependencies = [ netifaces ]; 25 + 26 + pythonImportsCheck = [ "aiozeroconf" ]; 20 27 21 28 meta = with lib; { 22 - description = "A pure python implementation of multicast DNS service discovery"; 23 - mainProgram = "aiozeroconf"; 29 + description = "Implementation of multicast DNS service discovery"; 24 30 homepage = "https://github.com/jstasiak/python-zeroconf"; 25 - license = licenses.lgpl21; 31 + license = licenses.lgpl21Only; 26 32 maintainers = with maintainers; [ obadz ]; 33 + mainProgram = "aiozeroconf"; 27 34 }; 28 35 }
+2 -2
pkgs/development/python-modules/argilla/default.nix
··· 65 65 }: 66 66 let 67 67 pname = "argilla"; 68 - version = "1.26.1"; 68 + version = "1.27.0"; 69 69 optional-dependencies = { 70 70 server = [ 71 71 fastapi ··· 126 126 owner = "argilla-io"; 127 127 repo = pname; 128 128 rev = "refs/tags/v${version}"; 129 - hash = "sha256-7d8zvP06GrHrSEJn2NNv2BUNea1wamf21e+qa1dZU18="; 129 + hash = "sha256-CBVP/+XFKnJBMcxsDd7lgQ1JFX7zFlHmdBwkAMmq85g="; 130 130 }; 131 131 132 132 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/boto3-stubs/default.nix
··· 366 366 367 367 buildPythonPackage rec { 368 368 pname = "boto3-stubs"; 369 - version = "1.34.84"; 369 + version = "1.34.87"; 370 370 pyproject = true; 371 371 372 372 disabled = pythonOlder "3.7"; ··· 374 374 src = fetchPypi { 375 375 pname = "boto3_stubs"; 376 376 inherit version; 377 - hash = "sha256-c7u1CaacSsjM4DivsVEGhriDmMvUbV3x4yOPzmbfmvU="; 377 + hash = "sha256-fGIC78m332fXc8IYRCcwA/pmx41z7kKE4u9L9rrMCHo="; 378 378 }; 379 379 380 380 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/botocore-stubs/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "botocore-stubs"; 12 - version = "1.34.86"; 12 + version = "1.34.87"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 17 17 src = fetchPypi { 18 18 pname = "botocore_stubs"; 19 19 inherit version; 20 - hash = "sha256-Lg0XDWJ0VKHYtoXvP07tjArfY08Z6clvGVyjrvc3pi4="; 20 + hash = "sha256-Dy67vF7mCc19wz/In6b4i+yLvir8+BSteoi+AOp3QdY="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/dirigera/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "dirigera"; 15 - version = "1.1.2"; 15 + version = "1.1.4"; 16 16 pyproject = true; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 owner = "Leggin"; 22 22 repo = "dirigera"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-EOnhkfU6DC0IfroHR8O45eNxIyyNS81Z/ptSViqyThU="; 24 + hash = "sha256-60DLNp3mM4LpnmM98JVcKlOxj20jvtsBnYq7tL4WEW8="; 25 25 }; 26 26 27 27 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/fastapi-sso/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "fastapi-sso"; 20 - version = "0.14.0"; 20 + version = "0.14.2"; 21 21 pyproject = true; 22 22 23 23 disabled = pythonOlder "3.8"; ··· 26 26 owner = "tomasvotava"; 27 27 repo = "fastapi-sso"; 28 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-JFIVmpKsTaL7SYwamW/8zMWaBampmCTweiNz7zcgbco="; 29 + hash = "sha256-mkaQY+fIc4zw+ESe3ybxAMgMQOOpjCIJDv+dDj76oAg="; 30 30 }; 31 31 32 32 postPatch = ''
+34 -40
pkgs/development/python-modules/google-cloud-bigquery/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , db-dtypes 4 - , fetchPypi 5 - , freezegun 6 - , google-api-core 7 - , google-cloud-bigquery-storage 8 - , google-cloud-core 9 - , google-cloud-datacatalog 10 - , google-cloud-storage 11 - , google-cloud-testutils 12 - , google-resumable-media 13 - , grpcio 14 - , ipython 15 - , mock 16 - , pandas 17 - , proto-plus 18 - , protobuf 19 - , psutil 20 - , pyarrow 21 - , pytest-xdist 22 - , pytestCheckHook 23 - , python-dateutil 24 - , pythonOlder 25 - , requests 26 - , setuptools 27 - , tqdm 1 + { 2 + lib, 3 + buildPythonPackage, 4 + db-dtypes, 5 + fetchPypi, 6 + freezegun, 7 + google-api-core, 8 + google-cloud-bigquery-storage, 9 + google-cloud-core, 10 + google-cloud-datacatalog, 11 + google-cloud-storage, 12 + google-cloud-testutils, 13 + google-resumable-media, 14 + grpcio, 15 + ipython, 16 + mock, 17 + pandas, 18 + proto-plus, 19 + protobuf, 20 + psutil, 21 + pyarrow, 22 + pytest-xdist, 23 + pytestCheckHook, 24 + python-dateutil, 25 + pythonOlder, 26 + requests, 27 + setuptools, 28 + tqdm, 28 29 }: 29 30 30 31 buildPythonPackage rec { 31 32 pname = "google-cloud-bigquery"; 32 - version = "3.20.1"; 33 + version = "3.21.0"; 33 34 pyproject = true; 34 35 35 36 disabled = pythonOlder "3.7"; 36 37 37 38 src = fetchPypi { 38 39 inherit pname version; 39 - hash = "sha256-MYqjq6tfGQDuJPY7qL0Cuc2vqpQtc4tNwUpO8swtkl8="; 40 + hash = "sha256-YmXDn51b31DxHLganCoGBdKF3zSsE53g0jM7ElCt0P8="; 40 41 }; 41 42 42 - build-system = [ 43 - setuptools 44 - ]; 43 + build-system = [ setuptools ]; 45 44 46 45 dependencies = [ 47 46 grpcio ··· 66 65 pandas 67 66 pyarrow 68 67 ]; 69 - tqdm = [ 70 - tqdm 71 - ]; 72 - ipython = [ 73 - ipython 74 - ]; 68 + tqdm = [ tqdm ]; 69 + ipython = [ ipython ]; 75 70 }; 76 71 77 72 nativeCheckInputs = [ ··· 83 78 google-cloud-storage 84 79 pytestCheckHook 85 80 pytest-xdist 86 - ] ++ passthru.optional-dependencies.pandas 87 - ++ passthru.optional-dependencies.ipython; 81 + ] ++ passthru.optional-dependencies.pandas ++ passthru.optional-dependencies.ipython; 88 82 89 83 # prevent google directory from shadowing google imports 90 84 preCheck = ''
+2 -2
pkgs/development/python-modules/llama-index-vector-stores-qdrant/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "llama-index-vector-stores-qdrant"; 14 - version = "0.2.0"; 14 + version = "0.2.1"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 19 19 src = fetchPypi { 20 20 pname = "llama_index_vector_stores_qdrant"; 21 21 inherit version; 22 - hash = "sha256-eYgp2S4KubjyL0bgaL7nRCyFhvTuLU7c7vjw4tJ+9wA="; 22 + hash = "sha256-begHJBxdu+19LIoNgAd3Gnei2TQqpEU3gd6cVrv0zGw="; 23 23 }; 24 24 25 25 build-system = [ poetry-core ];
+9 -3
pkgs/development/python-modules/nvchecker/default.nix
··· 21 21 22 22 buildPythonPackage rec { 23 23 pname = "nvchecker"; 24 - version = "2.13.1"; 24 + version = "2.14"; 25 25 pyproject = true; 26 26 27 27 disabled = pythonOlder "3.8"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "lilydjwg"; 31 - repo = pname; 31 + repo = "nvchecker"; 32 32 rev = "v${version}"; 33 - hash = "sha256-q+az9oaxxIOv/vLFpkT3cF5GDJsa0Cid4oPWEKg5s7M="; 33 + hash = "sha256-QqfF8PGY8sULv1x0blu21ucWxqhOpQ7jyLuRCzDIpco="; 34 34 }; 35 + 36 + postPatch = '' 37 + # Fix try/except syntax. Remove with the next release 38 + substituteInPlace tests/test_jq.py \ 39 + --replace-warn "except jq" "except ImportError" 40 + ''; 35 41 36 42 nativeBuildInputs = [ 37 43 setuptools
+42 -48
pkgs/development/python-modules/proxy-py/default.nix
··· 1 - { lib 2 - , stdenv 3 - , bash 4 - , buildPythonPackage 5 - , fetchFromGitHub 6 - , fetchpatch 7 - , gnumake 8 - , httpx 9 - , openssl 10 - , paramiko 11 - , pytest-asyncio 12 - , pytest-mock 13 - , pytestCheckHook 14 - , pythonOlder 15 - , setuptools-scm 16 - , typing-extensions 17 - , wheel 1 + { 2 + lib, 3 + stdenv, 4 + bash, 5 + buildPythonPackage, 6 + fetchFromGitHub, 7 + fetchpatch, 8 + gnumake, 9 + h2, 10 + hpack, 11 + httpx, 12 + hyperframe, 13 + openssl, 14 + paramiko, 15 + pytest-asyncio, 16 + pytest-mock, 17 + pytest-xdist, 18 + pytestCheckHook, 19 + pythonOlder, 20 + requests, 21 + setuptools-scm, 22 + typing-extensions, 18 23 }: 19 24 20 25 buildPythonPackage rec { 21 26 pname = "proxy-py"; 22 - version = "2.4.3"; 23 - format = "pyproject"; 27 + version = "2.4.4rc5"; 28 + pyproject = true; 24 29 25 30 disabled = pythonOlder "3.7"; 26 31 ··· 28 33 owner = "abhinavsingh"; 29 34 repo = "proxy.py"; 30 35 rev = "refs/tags/v${version}"; 31 - hash = "sha256-dA7a9RicBFCSf6IoGX/CdvI8x/xMOFfNtyuvFn9YmHI="; 36 + hash = "sha256-ngIskWzN6699C0WjSX/ZbHxV3Eb8ikQPNYZFzfzt7xU="; 32 37 }; 33 38 34 - patches = [ 35 - # this patch is so that the one following it applies cleanly 36 - # https://github.com/abhinavsingh/proxy.py/pull/1209 37 - (fetchpatch { 38 - name = "update-build-dependencies.patch"; 39 - url = "https://github.com/abhinavsingh/proxy.py/commit/2e535360ce5ed9734f2c00dc6aefe5ebd281cea5.patch"; 40 - hash = "sha256-eR3R4M7jwQMnY5ob0V6G71jXcrkV7YZvo1JOUG4gnrY="; 41 - }) 42 - # https://github.com/abhinavsingh/proxy.py/pull/1345 43 - (fetchpatch { 44 - name = "remove-setuptools-scm-git-archive-dependency.patch"; 45 - url = "https://github.com/abhinavsingh/proxy.py/commit/027bfa6b912745f588d272f1a1082f6ca416f815.patch"; 46 - hash = "sha256-O2LlSrSrB3u2McAZRY+KviuU7Hv1tOuf0n+D/H4BWvI="; 47 - }) 48 - ]; 49 - 50 39 postPatch = '' 51 40 substituteInPlace Makefile \ 52 41 --replace "SHELL := /bin/bash" "SHELL := ${bash}/bin/bash" 53 42 substituteInPlace pytest.ini \ 54 - --replace "-p pytest_cov" "" \ 55 - --replace "--no-cov-on-fail" "" 43 + --replace-fail "-p pytest_cov" "" \ 44 + --replace-fail "--no-cov-on-fail" "" 56 45 sed -i "/--cov/d" pytest.ini 57 46 ''; 58 47 59 - nativeBuildInputs = [ 60 - setuptools-scm 61 - wheel 62 - ]; 48 + build-system = [ setuptools-scm ]; 63 49 64 - propagatedBuildInputs = [ 50 + dependencies = [ 65 51 paramiko 66 52 typing-extensions 67 53 ]; 68 54 69 55 nativeCheckInputs = [ 56 + gnumake 57 + h2 58 + hpack 70 59 httpx 60 + hyperframe 71 61 openssl 72 - gnumake 73 62 pytest-asyncio 74 63 pytest-mock 64 + pytest-xdist 75 65 pytestCheckHook 66 + requests 76 67 ]; 77 68 78 69 preCheck = '' ··· 81 72 82 73 disabledTests = [ 83 74 # Test requires network access 84 - "test_http2_via_proxy" 75 + "http" 76 + "http2" 77 + "proxy" 78 + "web_server" 79 + # Location is not writable 80 + "test_gen_csr" 85 81 # Tests run into a timeout 86 82 "integration" 87 83 ]; 88 84 89 - pythonImportsCheck = [ 90 - "proxy" 91 - ]; 85 + pythonImportsCheck = [ "proxy" ]; 92 86 93 87 meta = with lib; { 94 88 description = "Python proxy framework";
+21 -24
pkgs/development/python-modules/pyenphase/default.nix
··· 1 - { lib 2 - , awesomeversion 3 - , buildPythonPackage 4 - , envoy-utils 5 - , fetchFromGitHub 6 - , httpx 7 - , lxml 8 - , orjson 9 - , poetry-core 10 - , pyjwt 11 - , pytest-asyncio 12 - , pytestCheckHook 13 - , pythonOlder 14 - , respx 15 - , syrupy 16 - , tenacity 1 + { 2 + lib, 3 + awesomeversion, 4 + buildPythonPackage, 5 + envoy-utils, 6 + fetchFromGitHub, 7 + httpx, 8 + lxml, 9 + orjson, 10 + poetry-core, 11 + pyjwt, 12 + pytest-asyncio, 13 + pytestCheckHook, 14 + pythonOlder, 15 + respx, 16 + syrupy, 17 + tenacity, 17 18 }: 18 19 19 20 buildPythonPackage rec { 20 21 pname = "pyenphase"; 21 - version = "1.20.1"; 22 + version = "1.20.2"; 22 23 pyproject = true; 23 24 24 25 disabled = pythonOlder "3.11"; ··· 27 28 owner = "pyenphase"; 28 29 repo = "pyenphase"; 29 30 rev = "refs/tags/v${version}"; 30 - hash = "sha256-Bxwd8qHsvq9BuBMSu5JI/Yk/KC5aQ7b7lnXuIoNQ6EI="; 31 + hash = "sha256-sjZaLqTYoXJ1cpaSuyLNAsUrACOMVah7DKaKxGkG0zE="; 31 32 }; 32 33 33 34 postPatch = '' ··· 35 36 --replace-fail " --cov=pyenphase --cov-report=term-missing:skip-covered" "" 36 37 ''; 37 38 38 - build-system = [ 39 - poetry-core 40 - ]; 39 + build-system = [ poetry-core ]; 41 40 42 41 dependencies = [ 43 42 awesomeversion ··· 61 60 "test_with_7_x_firmware" 62 61 ]; 63 62 64 - pythonImportsCheck = [ 65 - "pyenphase" 66 - ]; 63 + pythonImportsCheck = [ "pyenphase" ]; 67 64 68 65 meta = with lib; { 69 66 description = "Library to control enphase envoy";
+8 -2
pkgs/development/python-modules/python-i18n/default.nix
··· 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "danhper"; 10 - repo = pname; 10 + repo = "python-i18n"; 11 11 rev = "v${version}"; 12 12 sha256 = "6FahoHZqaOWYGaT9RqLARCm2kLfUIlYuauB6+0eX7jA="; 13 13 }; 14 14 15 - nativeCheckInputs = [ pytestCheckHook pyyaml ]; 15 + # Replace use of deprecated assertRaisesRegexp 16 + postPatch = '' 17 + substituteInPlace i18n/tests/loader_tests.py \ 18 + --replace-fail assertRaisesRegexp assertRaisesRegex 19 + ''; 16 20 21 + nativeCheckInputs = [ pytestCheckHook pyyaml ]; 17 22 pytestFlagsArray = [ "i18n/tests/run_tests.py" ]; 23 + pythonImportsCheck = [ "i18n" ]; 18 24 19 25 meta = with lib; { 20 26 description = "Easy to use i18n library";
+2 -2
pkgs/development/python-modules/twilio/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "twilio"; 23 - version = "9.0.4"; 23 + version = "9.0.5"; 24 24 pyproject = true; 25 25 26 26 disabled = pythonOlder "3.7"; ··· 29 29 owner = "twilio"; 30 30 repo = "twilio-python"; 31 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-3014wT7DXRlWvRxfqx/wIR9v9uX9QROQICDHXcgtOHs="; 32 + hash = "sha256-q7tY44L8KA29HeoLBJf75Xp3IZSiT5DOkhtZ+7BD7Hg="; 33 33 }; 34 34 35 35 build-system = [ setuptools ];
-17
pkgs/development/python-modules/uuid/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi }: 2 - 3 - buildPythonPackage rec { 4 - pname = "uuid"; 5 - version = "1.30"; 6 - format = "setuptools"; 7 - 8 - src = fetchPypi { 9 - inherit pname version; 10 - sha256 = "0gqrjsm85nnkxkmd1vk8350wqj2cigjflnvcydk084n5980cr1qz"; 11 - }; 12 - 13 - meta = with lib; { 14 - description = "UUID object and generation functions (Python 2.3 or higher)"; 15 - homepage = "http://zesty.ca/python/"; 16 - }; 17 - }
+2 -2
pkgs/development/python-modules/xmlschema/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "xmlschema"; 15 - version = "3.2.1"; 15 + version = "3.3.0"; 16 16 pyproject = true; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 21 21 owner = "sissaschool"; 22 22 repo = "xmlschema"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-jhof4C/jbMcvBRTLFdeFq2+ZucoDhbdcLE9IWvgzN0Y="; 24 + hash = "sha256-kqaS6h0bJvJQoVa4L2qhkvuZsK4a6vtqek/wWN22R6I="; 25 25 }; 26 26 27 27 build-system = [ setuptools ];
+3 -3
pkgs/development/tools/typos/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "typos"; 5 - version = "1.20.8"; 5 + version = "1.20.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "crate-ci"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-ZigvL11M1bxc7cwDExgIdFhXnZE7LoHIu7oS4Ga2hWw="; 11 + hash = "sha256-p9vw2BDfCb31nsHvkdW75fYgEV0Nd3xd7hibAvqL+MA="; 12 12 }; 13 13 14 - cargoHash = "sha256-ZD56gy4untz5Ey/sopCFjFWsBiwMi+AZCdNch/aJD0c="; 14 + cargoHash = "sha256-cLoTMzvJsjFhMZZRp24hacTdPRhWjcM5xc77obp8UGI="; 15 15 16 16 meta = with lib; { 17 17 description = "Source code spell checker";
+2 -2
pkgs/servers/dns/knot-resolver/default.nix
··· 18 18 19 19 unwrapped = stdenv.mkDerivation rec { 20 20 pname = "knot-resolver"; 21 - version = "5.7.1"; 21 + version = "5.7.2"; 22 22 23 23 src = fetchurl { 24 24 url = "https://secure.nic.cz/files/knot-resolver/${pname}-${version}.tar.xz"; 25 - sha256 = "da14b415c61d53747a991f12d6209367ef826a13dc6bf4eeaf5d88760294c3a2"; 25 + hash = "sha256-X2oic5D81MLQqAKKZStVqdhj7HvgEpj+A43x0nP7mg8="; 26 26 }; 27 27 28 28 outputs = [ "out" "dev" ];
+6
pkgs/servers/home-assistant/custom-components/default.nix
··· 38 38 39 39 sensi = callPackage ./sensi {}; 40 40 41 + smartir = callPackage ./smartir {}; 42 + 41 43 smartthinq-sensors = callPackage ./smartthinq-sensors {}; 42 44 43 45 waste_collection_schedule = callPackage ./waste_collection_schedule {}; 46 + 47 + xiaomi_gateway3 = callPackage ./xiaomi_gateway3 {}; 48 + 49 + xiaomi_miot = callPackage ./xiaomi_miot {}; 44 50 45 51 yassi = callPackage ./yassi {}; 46 52 }
+38
pkgs/servers/home-assistant/custom-components/smartir/default.nix
··· 1 + { lib 2 + , buildHomeAssistantComponent 3 + , fetchFromGitHub 4 + , aiofiles 5 + , broadlink 6 + }: 7 + 8 + buildHomeAssistantComponent rec { 9 + owner = "smartHomeHub"; 10 + domain = "smartir"; 11 + version = "1.17.9"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "smartHomeHub"; 15 + repo = "SmartIR"; 16 + rev = version; 17 + hash = "sha256-E6TM761cuaeQzlbjA+oZ+wt5HTJAfkF2J3i4P1Wbuic="; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + aiofiles 22 + broadlink 23 + ]; 24 + 25 + dontBuild = true; 26 + 27 + postInstall = '' 28 + cp -r codes $out/custom_components/smartir/ 29 + ''; 30 + 31 + meta = with lib; { 32 + changelog = "https://github.com/smartHomeHub/SmartIR/releases/tag/v${version}"; 33 + description = "Integration for Home Assistant to control climate, TV and fan devices via IR/RF controllers (Broadlink, Xiaomi, MQTT, LOOKin, ESPHome)"; 34 + homepage = "https://github.com/smartHomeHub/SmartIR"; 35 + maintainers = with maintainers; [ azuwis ]; 36 + license = licenses.mit; 37 + }; 38 + }
+32
pkgs/servers/home-assistant/custom-components/xiaomi_gateway3/default.nix
··· 1 + { lib 2 + , buildHomeAssistantComponent 3 + , fetchFromGitHub 4 + , zigpy 5 + }: 6 + 7 + buildHomeAssistantComponent rec { 8 + owner = "AlexxIT"; 9 + domain = "xiaomi_gateway3"; 10 + version = "4.0.3"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "AlexxIT"; 14 + repo = "XiaomiGateway3"; 15 + rev = "v${version}"; 16 + hash = "sha256-YGaVQaz3A0yM8AIC02CvMKWMJ3tW3OADYgKY8ViIt5U="; 17 + }; 18 + 19 + propagatedBuildInputs = [ 20 + zigpy 21 + ]; 22 + 23 + dontBuild = true; 24 + 25 + meta = with lib; { 26 + changelog = "https://github.com/AlexxIT/XiaomiGateway3/releases/tag/v{version}"; 27 + description = "Home Assistant custom component for control Xiaomi Multimode Gateway (aka Gateway 3), Xiaomi Multimode Gateway 2, Aqara Hub E1 on default firmwares over LAN"; 28 + homepage = "https://github.com/AlexxIT/XiaomiGateway3"; 29 + maintainers = with maintainers; [ azuwis ]; 30 + license = licenses.mit; 31 + }; 32 + }
+38
pkgs/servers/home-assistant/custom-components/xiaomi_miot/default.nix
··· 1 + { lib 2 + , buildHomeAssistantComponent 3 + , fetchFromGitHub 4 + , hap-python 5 + , micloud 6 + , pyqrcode 7 + , python-miio 8 + }: 9 + 10 + buildHomeAssistantComponent rec { 11 + owner = "al-one"; 12 + domain = "xiaomi_miot"; 13 + version = "0.7.17"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "al-one"; 17 + repo = "hass-xiaomi-miot"; 18 + rev = "v${version}"; 19 + hash = "sha256-IpL4e2mKCdtNu8NtI+xpx4FPW/uj1M5Rk6DswXmSJBk="; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + hap-python 24 + micloud 25 + pyqrcode 26 + python-miio 27 + ]; 28 + 29 + dontBuild = true; 30 + 31 + meta = with lib; { 32 + changelog = "https://github.com/al-one/hass-xiaomi-miot/releases/tag/${version}"; 33 + description = "Automatic integrate all Xiaomi devices to HomeAssistant via miot-spec, support Wi-Fi, BLE, ZigBee devices."; 34 + homepage = "https://github.com/al-one/hass-xiaomi-miot"; 35 + maintainers = with maintainers; [ azuwis ]; 36 + license = licenses.asl20; 37 + }; 38 + }
+3 -3
pkgs/tools/security/cnspec/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "cnspec"; 9 - version = "10.12.2"; 9 + version = "11.0.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "mondoohq"; 13 13 repo = "cnspec"; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-FpUWCIMpBfJDEQKNwKjDSH5u2dxh9jO97cfmj77IdAc="; 15 + hash = "sha256-TSTOhfFNFwuF9kNf1q2HVcoxhKS1pKW4kSorSPyyeQU="; 16 16 }; 17 17 18 18 proxyVendor = true; 19 19 20 - vendorHash = "sha256-7Cor+SYujUKdXwWzBNT5POkNnxtnEPE5iffNbFbVfys="; 20 + vendorHash = "sha256-Uuz/ghtd/1ol1ugDI7pz5Fyv6U5PpOdcoerU/qx4MPA="; 21 21 22 22 subPackages = [ "apps/cnspec" ]; 23 23
+1 -1
pkgs/tools/text/mdbook-admonish/default.nix
··· 19 19 description = "A preprocessor for mdbook to add Material Design admonishments"; 20 20 mainProgram = "mdbook-admonish"; 21 21 license = licenses.mit; 22 - maintainers = with maintainers; [ jmgilman Frostman ]; 22 + maintainers = with maintainers; [ jmgilman Frostman matthiasbeyer ]; 23 23 homepage = "https://github.com/tommilligan/mdbook-admonish"; 24 24 }; 25 25 }
+1 -1
pkgs/tools/text/mdbook-cmdrun/default.nix
··· 22 22 mainProgram = "mdbook-cmdrun"; 23 23 homepage = "https://github.com/FauconFan/mdbook-cmdrun"; 24 24 license = licenses.mit; 25 - maintainers = with maintainers; [ pinpox ]; 25 + maintainers = with maintainers; [ pinpox matthiasbeyer ]; 26 26 }; 27 27 }
+1 -1
pkgs/tools/text/mdbook-d2/default.nix
··· 29 29 homepage = "https://github.com/danieleades/mdbook-d2"; 30 30 changelog = "https://github.com/danieleades/mdbook-d2/blob/${src.rev}/CHANGELOG.md"; 31 31 license = licenses.mit; 32 - maintainers = with maintainers; [ blaggacao ]; 32 + maintainers = with maintainers; [ blaggacao matthiasbeyer ]; 33 33 }; 34 34 }
+1 -1
pkgs/tools/text/mdbook-emojicodes/default.nix
··· 28 28 homepage = "https://github.com/blyxyas/mdbook-emojicodes"; 29 29 changelog = "https://github.com/blyxyas/mdbook-emojicodes/releases/tag/${version}"; 30 30 license = licenses.mit; 31 - maintainers = with maintainers; [ blaggacao ]; 31 + maintainers = with maintainers; [ blaggacao matthiasbeyer ]; 32 32 }; 33 33 }
+1 -1
pkgs/tools/text/mdbook-epub/default.nix
··· 37 37 mainProgram = "mdbook-epub"; 38 38 homepage = "https://michael-f-bryan.github.io/mdbook-epub"; 39 39 license = licenses.mpl20; 40 - maintainers = with maintainers; [ yuu ]; 40 + maintainers = with maintainers; [ yuu matthiasbeyer ]; 41 41 }; 42 42 }
+1 -1
pkgs/tools/text/mdbook-footnote/default.nix
··· 24 24 mainProgram = "mdbook-footnote"; 25 25 homepage = "https://github.com/daviddrysdale/mdbook-footnote"; 26 26 license = licenses.asl20; 27 - maintainers = with maintainers; [ brianmcgillion ]; 27 + maintainers = with maintainers; [ brianmcgillion matthiasbeyer ]; 28 28 }; 29 29 }
+1 -1
pkgs/tools/text/mdbook-graphviz/default.nix
··· 23 23 homepage = "https://github.com/dylanowen/mdbook-graphviz"; 24 24 changelog = "https://github.com/dylanowen/mdbook-graphviz/releases/tag/v${version}"; 25 25 license = [ licenses.mpl20 ]; 26 - maintainers = with maintainers; [ lovesegfault ]; 26 + maintainers = with maintainers; [ lovesegfault matthiasbeyer ]; 27 27 }; 28 28 }
+1 -1
pkgs/tools/text/mdbook-i18n-helpers/default.nix
··· 22 22 homepage = "https://github.com/google/mdbook-i18n-helpers"; 23 23 changelog = "https://github.com/google/mdbook-i18n-helpers/releases/tag/${version}"; 24 24 license = licenses.asl20; 25 - maintainers = with maintainers; [ teutat3s ]; 25 + maintainers = with maintainers; [ teutat3s matthiasbeyer ]; 26 26 }; 27 27 }
+1 -1
pkgs/tools/text/mdbook-katex/default.nix
··· 18 18 mainProgram = "mdbook-katex"; 19 19 homepage = "https://github.com/lzanini/${pname}"; 20 20 license = [ licenses.mit ]; 21 - maintainers = with maintainers; [ lovesegfault ]; 21 + maintainers = with maintainers; [ lovesegfault matthiasbeyer ]; 22 22 }; 23 23 }
+1 -1
pkgs/tools/text/mdbook-kroki-preprocessor/default.nix
··· 36 36 mainProgram = "mdbook-kroki-preprocessor"; 37 37 homepage = "https://github.com/joelcourtney/mdbook-kroki-preprocessor"; 38 38 license = licenses.gpl3Only; 39 - maintainers = with maintainers; [ blaggacao ]; 39 + maintainers = with maintainers; [ blaggacao matthiasbeyer ]; 40 40 }; 41 41 }
+1 -1
pkgs/tools/text/mdbook-linkcheck/default.nix
··· 29 29 mainProgram = "mdbook-linkcheck"; 30 30 homepage = "https://github.com/Michael-F-Bryan/mdbook-linkcheck"; 31 31 license = licenses.mit; 32 - maintainers = with maintainers; [ zhaofengli ]; 32 + maintainers = with maintainers; [ zhaofengli matthiasbeyer ]; 33 33 }; 34 34 }
+1 -1
pkgs/tools/text/mdbook-mermaid/default.nix
··· 28 28 homepage = "https://github.com/badboy/mdbook-mermaid"; 29 29 changelog = "https://github.com/badboy/mdbook-mermaid/blob/v${version}/CHANGELOG.md"; 30 30 license = licenses.mpl20; 31 - maintainers = with maintainers; [ xrelkd ]; 31 + maintainers = with maintainers; [ xrelkd matthiasbeyer ]; 32 32 }; 33 33 }
+1 -1
pkgs/tools/text/mdbook-pagetoc/default.nix
··· 18 18 mainProgram = "mdbook-pagetoc"; 19 19 homepage = "https://github.com/slowsage/mdbook-pagetoc"; 20 20 license = licenses.mit; 21 - maintainers = with maintainers; [ blaggacao ]; 21 + maintainers = with maintainers; [ blaggacao matthiasbeyer ]; 22 22 }; 23 23 }
+1 -1
pkgs/tools/text/mdbook-pdf/default.nix
··· 48 48 homepage = "https://github.com/HollowMan6/mdbook-pdf"; 49 49 changelog = "https://github.com/HollowMan6/mdbook-pdf/releases/tag/v${version}"; 50 50 license = licenses.gpl3Plus; 51 - maintainers = with maintainers; [ hollowman6 ]; 51 + maintainers = with maintainers; [ hollowman6 matthiasbeyer ]; 52 52 }; 53 53 }
+1 -1
pkgs/tools/text/mdbook-plantuml/default.nix
··· 40 40 mainProgram = "mdbook-plantuml"; 41 41 homepage = "https://github.com/sytsereitsma/mdbook-plantuml"; 42 42 license = [ licenses.mit ]; 43 - maintainers = with maintainers; [ jcouyang ]; 43 + maintainers = with maintainers; [ jcouyang matthiasbeyer ]; 44 44 }; 45 45 }
+1 -12
pkgs/top-level/all-packages.nix
··· 9780 9780 ldc = callPackage ../development/compilers/ldc { }; 9781 9781 9782 9782 ligo = 9783 - let ocaml_p = ocaml-ng.ocamlPackages_4_14_janeStreet_0_15.overrideScope (self: super: { 9784 - zarith = super.zarith.overrideAttrs (o: { 9785 - src = fetchzip { 9786 - url = "https://github.com/ocaml/Zarith/archive/refs/tags/release-1.12.tar.gz"; 9787 - hash = "sha256-SQegsMc1+UIod8XeJDE+H5q1huNDQI8CUh7IsHOoVMs="; 9788 - }; 9789 - }); 9790 - }); in 9783 + let ocaml_p = ocaml-ng.ocamlPackages_4_14_janeStreet_0_15; in 9791 9784 callPackage ../development/compilers/ligo { 9792 9785 coq = coq_8_13.override { 9793 9786 customOCamlPackages = ocaml_p; ··· 28712 28705 28713 28706 fanwood = callPackage ../data/fonts/fanwood { }; 28714 28707 28715 - fira = callPackage ../data/fonts/fira { }; 28716 - 28717 28708 fira-code = callPackage ../data/fonts/fira-code { }; 28718 28709 fira-code-symbols = callPackage ../data/fonts/fira-code/symbols.nix { }; 28719 28710 fira-code-nerdfont = nerdfonts.override { ··· 28721 28712 }; 28722 28713 28723 28714 fira-go = callPackage ../data/fonts/fira-go { }; 28724 - 28725 - fira-mono = callPackage ../data/fonts/fira-mono { }; 28726 28715 28727 28716 flat-remix-icon-theme = callPackage ../data/icons/flat-remix-icon-theme { 28728 28717 inherit (plasma5Packages) breeze-icons;
+18 -18
pkgs/top-level/ocaml-packages.nix
··· 56 56 57 57 atdgen-runtime = callPackage ../development/ocaml-modules/atdgen/runtime.nix { }; 58 58 59 - awa = callPackage ../development/ocaml-modules/awa { mtime = mtime_1; }; 59 + awa = callPackage ../development/ocaml-modules/awa { }; 60 60 61 - awa-mirage = callPackage ../development/ocaml-modules/awa/mirage.nix { mtime = mtime_1; }; 61 + awa-mirage = callPackage ../development/ocaml-modules/awa/mirage.nix { }; 62 62 63 63 ### B ### 64 64 ··· 192 192 193 193 cil = callPackage ../development/ocaml-modules/cil { }; 194 194 195 + clap = callPackage ../development/ocaml-modules/clap { }; 196 + 195 197 class_group_vdf = callPackage ../development/ocaml-modules/class_group_vdf { }; 196 198 197 199 cmarkit = callPackage ../development/ocaml-modules/cmarkit { }; ··· 321 323 322 324 dns-certify = callPackage ../development/ocaml-modules/dns/certify.nix { }; 323 325 324 - dns-cli = callPackage ../development/ocaml-modules/dns/cli.nix { mtime = mtime_1; }; 326 + dns-cli = callPackage ../development/ocaml-modules/dns/cli.nix { }; 325 327 326 - dns-client = callPackage ../development/ocaml-modules/dns/client.nix { mtime = mtime_1; }; 328 + dns-client = callPackage ../development/ocaml-modules/dns/client.nix { }; 327 329 328 - dns-client-lwt = callPackage ../development/ocaml-modules/dns/client-lwt.nix { mtime = mtime_1; }; 330 + dns-client-lwt = callPackage ../development/ocaml-modules/dns/client-lwt.nix { }; 329 331 330 332 dns-client-mirage = callPackage ../development/ocaml-modules/dns/client-mirage.nix { }; 331 333 ··· 586 588 587 589 git-unix = callPackage ../development/ocaml-modules/git/unix.nix { 588 590 git-binary = pkgs.git; 589 - mtime = mtime_1; 590 591 }; 591 592 592 593 github = callPackage ../development/ocaml-modules/github { }; ··· 639 640 640 641 happy-eyeballs = callPackage ../development/ocaml-modules/happy-eyeballs { }; 641 642 642 - happy-eyeballs-lwt = callPackage ../development/ocaml-modules/happy-eyeballs/lwt.nix { mtime = mtime_1; }; 643 + happy-eyeballs-lwt = callPackage ../development/ocaml-modules/happy-eyeballs/lwt.nix { }; 643 644 644 645 happy-eyeballs-mirage = callPackage ../development/ocaml-modules/happy-eyeballs/mirage.nix { }; 645 646 ··· 669 670 670 671 imagelib = callPackage ../development/ocaml-modules/imagelib { }; 671 672 672 - index = callPackage ../development/ocaml-modules/index { mtime = mtime_1; }; 673 + index = callPackage ../development/ocaml-modules/index { }; 673 674 674 675 inifiles = callPackage ../development/ocaml-modules/inifiles { }; 675 676 ··· 691 692 692 693 iri = callPackage ../development/ocaml-modules/iri { }; 693 694 694 - irmin = callPackage ../development/ocaml-modules/irmin { mtime = mtime_1; }; 695 + irmin = callPackage ../development/ocaml-modules/irmin { }; 695 696 696 697 irmin-chunk = callPackage ../development/ocaml-modules/irmin/chunk.nix { }; 697 698 698 - irmin-containers = callPackage ../development/ocaml-modules/irmin/containers.nix { mtime = mtime_1; }; 699 + irmin-containers = callPackage ../development/ocaml-modules/irmin/containers.nix { }; 699 700 700 701 irmin-fs = callPackage ../development/ocaml-modules/irmin/fs.nix { }; 701 702 702 - irmin-git = callPackage ../development/ocaml-modules/irmin/git.nix { mtime = mtime_1; }; 703 + irmin-git = callPackage ../development/ocaml-modules/irmin/git.nix { }; 703 704 704 705 irmin-graphql = callPackage ../development/ocaml-modules/irmin/graphql.nix { }; 705 706 706 - irmin-http = callPackage ../development/ocaml-modules/irmin/http.nix { }; 707 - 708 707 irmin-mirage = callPackage ../development/ocaml-modules/irmin/mirage.nix { }; 709 708 710 709 irmin-mirage-git = callPackage ../development/ocaml-modules/irmin/mirage-git.nix { }; 711 710 712 711 irmin-mirage-graphql = callPackage ../development/ocaml-modules/irmin/mirage-graphql.nix { }; 713 712 714 - irmin-pack = callPackage ../development/ocaml-modules/irmin/pack.nix { mtime = mtime_1; }; 713 + irmin-pack = callPackage ../development/ocaml-modules/irmin/pack.nix { }; 715 714 716 - irmin-test = callPackage ../development/ocaml-modules/irmin/test.nix { mtime = mtime_1; }; 715 + irmin-test = callPackage ../development/ocaml-modules/irmin/test.nix { }; 717 716 718 717 irmin-tezos = callPackage ../development/ocaml-modules/irmin/tezos.nix { }; 719 718 ··· 1065 1064 1066 1065 metrics-unix = callPackage ../development/ocaml-modules/metrics/unix.nix { 1067 1066 inherit (pkgs) gnuplot; 1068 - mtime = mtime_1; 1069 1067 }; 1070 1068 1071 1069 mew = callPackage ../development/ocaml-modules/mew { }; ··· 1122 1120 1123 1121 mirage-crypto-rng-async = callPackage ../development/ocaml-modules/mirage-crypto/rng-async.nix { }; 1124 1122 1125 - mirage-crypto-rng-lwt = callPackage ../development/ocaml-modules/mirage-crypto/rng-lwt.nix { mtime = mtime_1; }; 1123 + mirage-crypto-rng-lwt = callPackage ../development/ocaml-modules/mirage-crypto/rng-lwt.nix { }; 1126 1124 1127 1125 mirage-crypto-rng-mirage = callPackage ../development/ocaml-modules/mirage-crypto/rng-mirage.nix { }; 1128 1126 ··· 1546 1544 1547 1545 prometheus = callPackage ../development/ocaml-modules/prometheus { }; 1548 1546 1549 - progress = callPackage ../development/ocaml-modules/progress { mtime = mtime_1; }; 1547 + progress = callPackage ../development/ocaml-modules/progress { }; 1550 1548 1551 1549 promise_jsoo = callPackage ../development/ocaml-modules/promise_jsoo { }; 1552 1550 ··· 1760 1758 terminal_size = callPackage ../development/ocaml-modules/terminal_size { }; 1761 1759 1762 1760 tezos-base58 = callPackage ../development/ocaml-modules/tezos-base58 { }; 1761 + 1762 + tezt = callPackage ../development/ocaml-modules/tezt { }; 1763 1763 1764 1764 theora = callPackage ../development/ocaml-modules/theora { }; 1765 1765
+1
pkgs/top-level/python-aliases.nix
··· 518 518 update_checker = update-checker; # added 2024-01-07 519 519 uproot3 = throw "uproot3 has been removed, use uproot instead"; # added 2022-12-13 520 520 uproot3-methods = throw "uproot3-methods has been removed"; # added 2022-12-13 521 + uuid = throw "uuid is a Python standard module"; # added 2024-04-18 521 522 validictory = throw "validictory has been removed, since it abandoned"; # added 2023-07-07 522 523 vega_datasets = vega-datasets; # added 2023-11-04 523 524 ViennaRNA = viennarna; # added 2023-08-23
-2
pkgs/top-level/python-packages.nix
··· 16436 16436 16437 16437 utils = callPackage ../development/python-modules/utils { }; 16438 16438 16439 - uuid = callPackage ../development/python-modules/uuid { }; 16440 - 16441 16439 uvcclient = callPackage ../development/python-modules/uvcclient { }; 16442 16440 16443 16441 uvicorn = callPackage ../development/python-modules/uvicorn { };