Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub b8dff849 d79dfb31

+227 -166
+2 -2
pkgs/applications/audio/mamba/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "mamba"; 17 - version = "2.2"; 17 + version = "2.3"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "brummer10"; 21 21 repo = "Mamba"; 22 22 rev = "v${version}"; 23 - sha256 = "1885qxyfkpslzk0aaaaws0x73b10h9nbr04jkk7xhkya25gf280m"; 23 + sha256 = "sha256-Dj8yPmuEtDVgu6Gm6aEY+dgJ0dtwB8RPg9EuaVAsiIs="; 24 24 fetchSubmodules = true; 25 25 }; 26 26
+3 -3
pkgs/applications/blockchains/polkadot/default.nix
··· 10 10 }: 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "polkadot"; 13 - version = "0.9.21"; 13 + version = "0.9.26"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "paritytech"; 17 17 repo = "polkadot"; 18 18 rev = "v${version}"; 19 - sha256 = "HCj5WwfKa4QsfO+1u4ciukDg6Rzv/uvc8h+V/Duhksg="; 19 + sha256 = "sha256-f/E4aK7eUlNgd9kEDjYAiNaeMTlKu1aqo8IjB++/Yts="; 20 20 21 21 # the build process of polkadot requires a .git folder in order to determine 22 22 # the git commit hash that is being built and add it to the version string. ··· 32 32 ''; 33 33 }; 34 34 35 - cargoSha256 = "tHU8KygIhJDgID/tGGssYTnY8raI5qTdLEDwOKox3No="; 35 + cargoSha256 = "sha256-tQ5XFv5P5EE33mKsQCBqAlJFu4+uG6ArVV17W8qbyLg="; 36 36 37 37 buildInputs = lib.optional stdenv.isDarwin [ Security ]; 38 38
+2 -2
pkgs/applications/editors/vim/common.nix
··· 1 1 { lib, fetchFromGitHub }: 2 2 rec { 3 - version = "9.0.0057"; 3 + version = "9.0.0115"; 4 4 5 5 src = fetchFromGitHub { 6 6 owner = "vim"; 7 7 repo = "vim"; 8 8 rev = "v${version}"; 9 - sha256 = "sha256-KEEuWRxattBrOAC0dWnWGRVqyOIEMe34ivMvSeuxKyA"; 9 + sha256 = "sha256-McotjgjN+ze1jdaAxkdJGTqIIIuOlHENriHdMrYSf5w="; 10 10 }; 11 11 12 12 enableParallelBuilding = true;
+1
pkgs/applications/editors/vim/default.nix
··· 31 31 "--with-tlib=ncurses" 32 32 "vim_cv_terminfo=yes" 33 33 "vim_cv_tgetent=zero" # it does on native anyway 34 + "vim_cv_timer_create=yes" 34 35 "vim_cv_tty_group=tty" 35 36 "vim_cv_tty_mode=0660" 36 37 "vim_cv_getcwd_broken=no"
+11
pkgs/applications/editors/vim/plugins/generated.nix
··· 3346 3346 meta.homepage = "https://github.com/junegunn/gv.vim/"; 3347 3347 }; 3348 3348 3349 + hare-vim = buildVimPluginFrom2Nix { 3350 + pname = "hare.vim"; 3351 + version = "2022-07-02"; 3352 + src = fetchgit { 3353 + url = "https://git.sr.ht/~sircmpwn/hare.vim"; 3354 + rev = "5c758cdbbabd6e4ba92bced9428cd1fa4212f003"; 3355 + sha256 = "0l1q9x1n30h32zfnd2krg3frywydfmb8ic05619pylamnyh4w918"; 3356 + }; 3357 + meta.homepage = "https://git.sr.ht/~sircmpwn/hare.vim"; 3358 + }; 3359 + 3349 3360 harpoon = buildVimPluginFrom2Nix { 3350 3361 pname = "harpoon"; 3351 3362 version = "2022-05-08";
+1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 280 280 https://github.com/ellisonleao/gruvbox.nvim/,, 281 281 https://github.com/sjl/gundo.vim/,, 282 282 https://github.com/junegunn/gv.vim/,, 283 + https://git.sr.ht/~sircmpwn/hare.vim,HEAD, 283 284 https://github.com/ThePrimeagen/harpoon/,, 284 285 https://github.com/neovimhaskell/haskell-vim/,, 285 286 https://github.com/travitch/hasksyn/,,
+5 -5
pkgs/applications/emulators/bsnes/ares/default.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 pname = "ares"; 22 - version = "128"; 22 + version = "129"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "ares-emulator"; 26 26 repo = "ares"; 27 27 rev = "v${version}"; 28 - sha256 = "sha256-Ojf1kyColBK0S3DwXjGaAZSl0ljhgiXkfKC11BL2fEc="; 28 + hash = "sha256-prfvoGtbnsl/1ahx98jBOgT64W566GoUtE8rIOF7lYc="; 29 29 }; 30 30 31 31 patches = [ ··· 56 56 enableParallelBuilding = true; 57 57 58 58 makeFlags = [ 59 - "-C desktop-ui" 59 + "hiro=gtk3" 60 60 "local=false" 61 61 "openmp=true" 62 - "hiro=gtk3" 63 62 "prefix=$(out)" 63 + "-C desktop-ui" 64 64 ]; 65 65 66 66 meta = with lib; { 67 67 homepage = "https://ares.dev"; 68 68 description = "Open-source multi-system emulator with a focus on accuracy and preservation"; 69 69 license = licenses.isc; 70 - maintainers = with maintainers; [ Madouura ]; 70 + maintainers = with maintainers; [ Madouura AndersonTorres ]; 71 71 platforms = platforms.linux; 72 72 }; 73 73 }
+2 -2
pkgs/applications/emulators/stella/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "stella"; 10 - version = "6.6"; 10 + version = "6.7"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "stella-emu"; 14 14 repo = pname; 15 15 rev = version; 16 - hash = "sha256-+ZvSCnnoKGyToSFqUQOArolFdgUcBBFNjFw8aoVDkYI="; 16 + hash = "sha256-E8vbBbsVMOSY3iSSE+UCwBwmfHU7Efmre1cYlexVZ+E="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/ticker/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "ticker"; 8 - version = "4.5.1"; 8 + version = "4.5.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "achannarasappa"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-LY9js3ckkSTsE5td3VV4DPXeoxhw9MjOa35SdxMlUqk="; 14 + sha256 = "sha256-9Gy7G/uRFUBfXlUa6nIle1WIS5Yf9DJMM57hE0oEyLI="; 15 15 }; 16 16 17 17 vendorSha256 = "sha256-6bosJ2AlbLZ551tCNPmvNyyReFJG+iS3SYUFti2/CAw=";
+3 -3
pkgs/applications/misc/tut/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tut"; 5 - version = "1.0.14"; 5 + version = "1.0.15"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "RasmusLindroth"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-2zlCO73UBT2E94+AvDdqACotWFna6G1P+Q9VrOKxK+c="; 11 + sha256 = "sha256-gRvX+UvekYDOVcX0ztLmM3OzHwl+FG2i6ATtRYMkQSE="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-ilq1sfFY6WuNACryDGjkpF5eUTan8Y6Yt26vot9XR54="; 14 + vendorSha256 = "sha256-ddo9b4AXa/6tcbsKZ2e7IXnU47TIIyhBZFk4tbmIdnY="; 15 15 16 16 meta = with lib; { 17 17 description = "A TUI for Mastodon with vim inspired keys";
+3 -3
pkgs/applications/networking/cluster/glooctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "glooctl"; 5 - version = "1.10.10"; 5 + version = "1.11.25"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "solo-io"; 9 9 repo = "gloo"; 10 10 rev = "v${version}"; 11 - hash = "sha256-Be0ejIQ3euKXX6wc1abXz8BphhrDnBMP0GzmnrF7C/4="; 11 + hash = "sha256-AwzqaysSjVlWJAzib0i1T76fe/C9bKGlSofa6Ipk8Go="; 12 12 }; 13 13 14 14 subPackages = [ "projects/gloo/cli/cmd" ]; 15 - vendorSha256 = "1s3s4n2wgi4azwkmg9zw2a3gz378nb1i41p3s8aixfbf6fsqc6ga"; 15 + vendorSha256 = "sha256-/H1gpQy2NVGiKZVEgTsvde/+x/ae/txu3HaBGNjhMKM="; 16 16 17 17 nativeBuildInputs = [ installShellFiles ]; 18 18
+2 -2
pkgs/applications/networking/cluster/kube3d/default.nix
··· 15 15 in 16 16 buildGoModule rec { 17 17 pname = "kube3d"; 18 - version = "5.4.1"; 18 + version = "5.4.4"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "k3d-io"; 22 22 repo = "k3d"; 23 23 rev = "v${version}"; 24 - sha256 = "sha256-DVQrD4JMei9yRFzuiVb6AcydEupNSlpgYLfGWWRiaao="; 24 + sha256 = "sha256-3J25Aj/otKDCWJ+YqAsoJogU2vckZMy7fsS8XR2EMgE="; 25 25 }; 26 26 vendorSha256 = null; 27 27
+3 -3
pkgs/applications/networking/cluster/kubebuilder/default.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "kubebuilder"; 12 - version = "3.3.0"; 12 + version = "3.5.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "kubernetes-sigs"; 16 16 repo = "kubebuilder"; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-xLeS0vfYuLEdzuou67ViduaBf62+Yqk+scaCCK+Xetk="; 18 + sha256 = "sha256-4R7Zpz90Bcj/OqxR+ahvYk3VsJ1R+k9q36Q77JsXJ1w="; 19 19 }; 20 - vendorSha256 = "sha256-zE/y9FAoUZBmWiUMWbc66CwkK0h7SEXzfZY3KkjtQ0A="; 20 + vendorSha256 = "sha256-ppeasqyr2Ow8d52P01IEf42+KTFXTEPv/giKPjTORwE="; 21 21 22 22 subPackages = ["cmd"]; 23 23
+3 -3
pkgs/applications/networking/cluster/kubergrunt/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubergrunt"; 5 - version = "0.8.0"; 5 + version = "0.9.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "gruntwork-io"; 9 9 repo = "kubergrunt"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-K94cGU+cFHOrAGXjHQFFFJYhZi9zNfdlGy5eb2DkcV8="; 11 + sha256 = "sha256-PY3qWIK1Q5vW9CgX1F41wf1FbThY0Y/gU9R5XkRDHfA="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-95rteSEMOBQnAw0QKuj5Yyi8n3xXGl0Tm97WiyTGxVw="; 14 + vendorSha256 = "sha256-HupAsDuBLQnuMpG3gvpnhVZhQ6oSxAm9UNdJ8UHzNBU="; 15 15 16 16 # Disable tests since it requires network access and relies on the 17 17 # presence of certain AWS infrastructure
+3 -3
pkgs/applications/networking/cluster/temporal/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "temporal"; 5 - version = "1.16.2"; 5 + version = "1.17.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "temporalio"; 9 9 repo = "temporal"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-MPfyjRpjfnuVbj+Pd7yIlaEJCiX1IEy/Lwwkv23kugw="; 11 + sha256 = "sha256-YaFB2OBC5dJjfomkge6w3sGyrESRxAFTDm+jPMLgskc="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-82W1nHhHvvU6poh5szuH9lDkq6YHgyfsJSubxotV270="; 14 + vendorSha256 = "sha256-MT/BmGTdyEzmXjuwlA6WhLIWlrQz3Wc4Tl5dMI1587Q="; 15 15 16 16 CGO_ENABLED = 0; 17 17
+3 -3
pkgs/applications/networking/cluster/tfswitch/default.nix
··· 1 1 { buildGoModule, lib, fetchFromGitHub }: 2 2 buildGoModule rec { 3 3 pname = "tfswitch"; 4 - version = "0.13.1275"; 4 + version = "0.13.1288"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "warrensbox"; 8 8 repo = "terraform-switcher"; 9 9 rev = version; 10 - sha256 = "sha256-yuoJkVztLtlr4xOa4muWKquwAb8lo2IQpD7PLxEQfpg="; 10 + sha256 = "sha256-nGFIzYThcuWpcwUahwMPIURubXpOj+ygoDbSnNYkACI="; 11 11 }; 12 12 13 - vendorSha256 = "sha256-jM9xYwBshBpaT4duBTvVwYUOapQfUbq9kL7EaRIGfQY="; 13 + vendorSha256 = "sha256-NX+vzI/Fa/n9ZQjpESes4fNVAmKlA1rqPwSKsL2GEUY="; 14 14 15 15 # Disable tests since it requires network access and relies on the 16 16 # presence of release.hashicorp.com
+1 -1
pkgs/applications/networking/cluster/vcluster/default.nix
··· 40 40 downloadPage = "https://github.com/loft-sh/vcluster"; 41 41 homepage = "https://www.vcluster.com/"; 42 42 license = licenses.asl20; 43 - maintainers = with maintainers; [ peterromfeldhk ]; 43 + maintainers = with maintainers; [ peterromfeldhk berryp ]; 44 44 }; 45 45 }
+3 -3
pkgs/applications/networking/cluster/werf/default.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "werf"; 14 - version = "1.2.140"; 14 + version = "1.2.144"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "werf"; 18 18 repo = "werf"; 19 19 rev = "v${version}"; 20 - sha256 = "sha256-StlIq7Xt71R2Yy2qeEC1faRQdlQSg6aQKwO8pVFMYGw="; 20 + sha256 = "sha256-5hfXHoU7hmiuLaS9nS6MAS6tJAmTwxE9VqBZ29hv56A="; 21 21 }; 22 22 23 - vendorSha256 = "sha256-jeRLA6dRvdKGWexR6/P6Vx39UmSK4Hhb/nyR3irMuWA="; 23 + vendorSha256 = "sha256-m+qt+pqLzQyzQkKzEbBkzgTlRjpaqJNF8tcirBx4Htc="; 24 24 25 25 proxyVendor = true; 26 26
+2 -2
pkgs/applications/networking/instant-messengers/rocketchat-desktop/default.nix
··· 4 4 in 5 5 stdenv.mkDerivation rec { 6 6 pname = "rocketchat-desktop"; 7 - version = "3.8.5"; 7 + version = "3.8.7"; 8 8 9 9 src = fetchurl { 10 10 url = "https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/${version}/rocketchat-${version}-linux-amd64.deb"; 11 - sha256 = "sha256-nKEfdbHfLjM4w79hzQdKiC4+IT3WXdDdlXkzelCKqOw"; 11 + sha256 = "sha256-kSEOjhsSa+5+oNxWY+cQR7RIRzd+BGR4WDL1drybxzU="; 12 12 }; 13 13 14 14 nativeBuildInputs = [
+2 -2
pkgs/applications/networking/instant-messengers/signal-cli/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "signal-cli"; 5 - version = "0.10.9"; 5 + version = "0.10.10"; 6 6 7 7 # Building from source would be preferred, but is much more involved. 8 8 src = fetchurl { 9 9 url = "https://github.com/AsamK/signal-cli/releases/download/v${version}/signal-cli-${version}-Linux.tar.gz"; 10 - sha256 = "sha256-2XmEUMx222yseewpiJY2rvc+JIMo7ROw3NA/4WIJnm4="; 10 + sha256 = "sha256-VXL4eeBK8hY5gw8tAdqKQGOc+z1AOAPDyHfBe/fDONc="; 11 11 }; 12 12 13 13 buildInputs = lib.optionals stdenv.isLinux [ libmatthew_java dbus dbus_java ];
+3 -3
pkgs/applications/networking/protonmail-bridge/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "protonmail-bridge"; 5 - version = "2.1.1"; 5 + version = "2.1.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ProtonMail"; 9 9 repo = "proton-bridge"; 10 10 rev = "br-${version}"; 11 - sha256 = "sha256-8oDA1QU5ZjtQZoCPVDa1U3P2KLzXtegtOxm6rNh+Ahk="; 11 + sha256 = "sha256-+XeNhjwtH1T5p8iydMQk22nXztyamSn6yY56/qqvkmk="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-n+WwkNHT+/CrC4vWIVHqYs2a8Qe/LNc0L3uoPZWDTts="; 14 + vendorSha256 = "sha256-YTGjiteYfuRkDC4M9c/JKqURq4WiC5n9pFRqRVYhyxU="; 15 15 16 16 nativeBuildInputs = [ pkg-config ]; 17 17
+2 -2
pkgs/applications/office/fava/default.nix
··· 2 2 3 3 python3.pkgs.buildPythonApplication rec { 4 4 pname = "fava"; 5 - version = "1.22.1"; 5 + version = "1.22.2"; 6 6 format = "pyproject"; 7 7 8 8 src = python3.pkgs.fetchPypi { 9 9 inherit pname version; 10 - sha256 = "sha256-gte1N43b9AokmEqONdvEcaGXDPIeGflsk+wuxDtTeR4="; 10 + sha256 = "sha256-Oarh0a0q+PYFojsYmdX763vFRSQhtm09z4ruSxXDpSA="; 11 11 }; 12 12 13 13 nativeBuildInputs = with python3.pkgs; [ setuptools-scm ];
+2 -2
pkgs/applications/science/logic/workcraft/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "workcraft"; 5 - version = "3.3.6"; 5 + version = "3.3.8"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/workcraft/workcraft/releases/download/v${version}/workcraft-v${version}-linux.tar.gz"; 9 - sha256 = "sha256-5J4HOTz92ALUcZZr15jJ6vplc3KDwbFCXqjEhlOV4kE="; 9 + sha256 = "sha256-T2rUEZsO8g/nk10LZvC+mXEC6IzutbjncERlmqg814g="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/applications/science/misc/snakemake/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "snakemake"; 8 - version = "7.9.0"; 8 + version = "7.12.0"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "snakemake"; 13 13 repo = pname; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-3kYOo90hr8QRJzwTlmxB1ebcFOcRM4H/+sBYNGdR5WQ="; 15 + hash = "sha256-URywo88EcQBYorwnKqgGOzunf2JunEWa36adhA1wha0="; 16 16 }; 17 17 18 18 propagatedBuildInputs = with python3.pkgs; [
+3 -3
pkgs/applications/virtualization/nixpacks/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "nixpacks"; 5 - version = "0.1.7"; 5 + version = "0.2.11"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "railwayapp"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-UxdK2e5VYcOEYdZn0oGRFIVGiwnPixiZ3rOnqJDSQO8="; 11 + sha256 = "sha256-DRYAVwNrNnMB5e1HQz3gmKcM9O7qWquGVsvWQHkCdhw="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-dJdPs4BJ1R2ZbGmGmvBerLPVqUHn5b/fz9C0kEnxA6U="; 14 + cargoSha256 = "sha256-+T8bnUeuzHcHEADZyxvjVuRlEoqMm8T2L9L5hqhNJKU="; 15 15 16 16 # skip test due FHS dependency 17 17 doCheck = false;
+2 -2
pkgs/applications/window-managers/herbstluftwm/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "herbstluftwm"; 7 - version = "0.9.4"; 7 + version = "0.9.5"; 8 8 9 9 src = fetchurl { 10 10 url = "https://herbstluftwm.org/tarballs/herbstluftwm-${version}.tar.gz"; 11 - sha256 = "1k03rdr6irsgnjl4w0vac0kk9nsz46qhy74iflmaycxgfv8fxy7f"; 11 + sha256 = "sha256-stRgCQnlvs5a1jgY37MLsZ/SrJ9ShHsaenStQEBxgQU="; 12 12 }; 13 13 14 14 outputs = [
+6 -2
pkgs/development/libraries/catch2/3.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "catch2"; 10 - version = "3.0.1"; 10 + version = "3.1.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "catchorg"; 14 14 repo = "Catch2"; 15 15 rev = "v${version}"; 16 - hash = "sha256-GcMkAgSfQnWs8wQeQD4ZMxJZED8V7FWBU04qMCutlPo="; 16 + hash = "sha256-bp/KLTr754txVUTAauJFrsxGKgZicUEe40CZBDkxRwk="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ ··· 23 23 cmakeFlags = [ 24 24 "-DCATCH_DEVELOPMENT_BUILD=ON" 25 25 "-DCATCH_BUILD_TESTING=${if doCheck then "ON" else "OFF"}" 26 + ] ++ lib.optionals (stdenv.isDarwin && doCheck) [ 27 + # test has a faulty path normalization technique that won't work in 28 + # our darwin build environment https://github.com/catchorg/Catch2/issues/1691 29 + "-DCMAKE_CTEST_ARGUMENTS=-E;ApprovalTests" 26 30 ]; 27 31 28 32 doCheck = true;
+2 -2
pkgs/development/libraries/gmime/3.nix
··· 2 2 , vala }: 3 3 4 4 stdenv.mkDerivation rec { 5 - version = "3.2.11"; 5 + version = "3.2.12"; 6 6 pname = "gmime"; 7 7 8 8 src = fetchurl { # https://github.com/jstedfast/gmime/releases 9 9 url = "https://github.com/jstedfast/gmime/releases/download/${version}/gmime-${version}.tar.xz"; 10 - sha256 = "5e023855a215b427645b400f5e55cf19cfd229f971317007e03e7bae72569bf8"; 10 + sha256 = "sha256-OPm3aBgjQsSExBIobbjVgRaX/4FiQ3wFea3w0G4icFs="; 11 11 }; 12 12 13 13 outputs = [ "out" "dev" ];
+2 -2
pkgs/development/libraries/pangolin/default.nix
··· 6 6 stdenv.mkDerivation rec { 7 7 pname = "pangolin"; 8 8 9 - version = "0.6"; 9 + version = "0.8"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "stevenlovegrove"; 13 13 repo = "Pangolin"; 14 14 rev = "v${version}"; 15 - sha256 = "0abjajxj7lc2yajshimar4w8kf8115prsjnhy83s6jc7cbz63wj8"; 15 + sha256 = "sha256-X8TZWJOQOCItYt/F8E5ahiaPJXoppu9qBlEqfHP0vRc="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ cmake pkg-config doxygen ];
+2 -2
pkgs/development/libraries/science/math/brial/default.nix
··· 8 8 }: 9 9 10 10 stdenv.mkDerivation rec { 11 - version = "1.2.10"; 11 + version = "1.2.11"; 12 12 pname = "brial"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "BRiAl"; 16 16 repo = "BRiAl"; 17 17 rev = version; 18 - sha256 = "1qg6ssp87rb8p37kahxmm88fbxqg6r540cky5v7wq7l19n2b1bss"; 18 + sha256 = "sha256-GkaeBggOCiIWNBZoIaCvAcqGDRc/whTOqPZbGpAxWIk="; 19 19 }; 20 20 21 21 # FIXME package boost-test and enable checks
+21 -12
pkgs/development/ocaml-modules/ssl/default.nix
··· 1 - { lib, buildDunePackage, fetchFromGitHub, pkg-config, openssl 2 - , dune-configurator }: 1 + { alcotest 2 + , buildDunePackage 3 + , dune-configurator 4 + , fetchFromGitHub 5 + , lib 6 + , ocaml 7 + , openssl 8 + , pkg-config 9 + }: 3 10 4 11 buildDunePackage rec { 5 12 pname = "ssl"; 6 - version = "0.5.10"; 13 + version = "0.5.11"; 7 14 8 15 src = fetchFromGitHub { 9 16 owner = "savonet"; 10 17 repo = "ocaml-ssl"; 11 - rev = "v${version}"; 12 - sha256 = "1rszqiqayh67xlwd5411k8vib47x9kapdr037z1majd2c14z3kcb"; 18 + rev = version; 19 + sha256 = "sha256-uFr+XSKDGMHaM2o5DODYmt7+LkhnDzzlVX//CtAXBm4="; 13 20 }; 14 21 15 - useDune2 = true; 16 22 nativeBuildInputs = [ pkg-config ]; 17 23 buildInputs = [ dune-configurator ]; 18 - propagatedBuildInputs = [openssl]; 24 + propagatedBuildInputs = [ openssl ]; 25 + 26 + doCheck = lib.versionAtLeast ocaml.version "4.06"; 27 + checkInputs = [ alcotest ]; 28 + preCheck = '' 29 + mkdir -p _build/default/tests/ 30 + cp tests/digicert_certificate.pem _build/default/tests/ 31 + ''; 19 32 20 33 meta = { 21 34 homepage = "http://savonet.rastageeks.org/"; 22 35 description = "OCaml bindings for libssl "; 23 36 license = "LGPL+link exception"; 24 - maintainers = [ 25 - lib.maintainers.maggesi 26 - lib.maintainers.anmonteiro 27 - lib.maintainers.dandellion 28 - ]; 37 + maintainers = with lib.maintainers; [ anmonteiro dandellion maggesi ]; 29 38 }; 30 39 }
+2 -2
pkgs/development/php-packages/grpc/default.nix
··· 3 3 buildPecl { 4 4 pname = "grpc"; 5 5 6 - version = "1.45.0"; 7 - sha256 = "sha256-SPnECBZ80sXfXYiVJjGfOsSxZBBZnasO9pPu9Q5klIg"; 6 + version = "1.48.0"; 7 + sha256 = "sha256-S0zLSRNV+TjSjmOkdt+S1RCSY+pj/+4eAklhZGHiaWM="; 8 8 9 9 doCheck = true; 10 10 checkTarget = "test";
+2 -2
pkgs/development/python-modules/opensimplex/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "opensimplex"; 10 - version = "0.4.2"; 10 + version = "0.4.3"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "lmas"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - sha256 = "zljS0yu3cHF2Vz3rFkwLXiHnKjo970MDIrC/56FoHa4="; 16 + sha256 = "C/MTKTHjxMsOgzuXvokw039Kv6N/PgBoOqKleWPLpw0="; 17 17 }; 18 18 19 19 propagatedBuildInputs = [ numpy ];
+2 -2
pkgs/development/python-modules/pytest-subtesthack/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "pytest-subtesthack"; 5 - version = "0.1.2"; 5 + version = "0.2.0"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "0711e5d04c291ac9ac6c9eff447ec2811b1d23ccdfe1417d16d4f96481efcbe6"; 9 + sha256 = "sha256-67UEIDycAf3TedKvp0dofct7HtG+H8DD9Tmy3oEnYgA="; 10 10 }; 11 11 12 12 buildInputs = [ pytest ];
+3 -3
pkgs/development/tools/misc/terraformer/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "terraformer"; 5 - version = "0.8.19"; 5 + version = "0.8.21"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "GoogleCloudPlatform"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-h6hqgAHyMNnE7AXNPTUM2srgHW9WGcGmO8d30U2IbSo="; 11 + sha256 = "sha256-IcxXR+EQItfUtUfBOlRi8VvxZ3y4OE8mdbch5KqG+wg="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-bT6+fH0VJfcgehiiLIDTEYyWgVHIMUGuRaebzm2st60="; 14 + vendorSha256 = "sha256-zek9c5y6HEvY0eFdv78RDS8+Q2/++34VHRJsIONse6c="; 15 15 16 16 subPackages = [ "." ]; 17 17
+2 -2
pkgs/development/tools/neil/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "neil"; 10 - version = "0.0.31"; 10 + version = "0.1.36"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "babashka"; 14 14 repo = "neil"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-+TDFSg7WA/roIqkuvECPS2UyBqiKQSLp1dooBsVP4uk="; 16 + sha256 = "sha256-byBQLYwFSUQJioV2FccsFqXGMlESSA1kg8aBeSaWbwA="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/development/tools/okteto/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "okteto"; 5 - version = "2.5.1"; 5 + version = "2.5.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "okteto"; 9 9 repo = "okteto"; 10 10 rev = version; 11 - sha256 = "sha256-wplNIh6NBXGiH9r3VL+CRSLZnY80JAhJNuDJNgu+Hy0="; 11 + sha256 = "sha256-VNtlH8Syj3myVEE4WAZpBnP10rl0e73cFg7TgCFh0EY="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-W1/QBMnMdZWokWSFmHhPqmOu827bpGXS8+GFp5Iu9Ig=";
+29
pkgs/development/tools/protoc-gen-rust/default.nix
··· 1 + { fetchCrate 2 + , lib 3 + , rustPlatform 4 + , protobuf 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "protoc-gen-rust"; 9 + version = "3.1.0"; 10 + 11 + src = fetchCrate { 12 + inherit version; 13 + pname = "protobuf-codegen"; 14 + sha256 = "sha256-DaydUuENqmN812BgQmpewRPhkq9lT6+g+VPuytLc25Y="; 15 + }; 16 + 17 + cargoSha256 = "sha256-kzc2Wd+Y3mNmOHxRj5R1LIbvXz5NyGcRnz2e0jdfdPg="; 18 + 19 + cargoBuildFlags = ["--bin" pname]; 20 + 21 + nativeBuildInputs = [ protobuf ]; 22 + 23 + meta = with lib; { 24 + description = "Protobuf plugin for generating Rust code"; 25 + homepage = "https://github.com/stepancheg/rust-protobuf"; 26 + license = licenses.mit; 27 + maintainers = with maintainers; [ lucperkins ]; 28 + }; 29 + }
+3 -3
pkgs/development/tools/symfony-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "symfony-cli"; 5 - version = "5.4.5"; 6 - vendorSha256 = "sha256-ss3AtHigm1U3KhVhulIAquNf0WG7y4BSQcxs4pwnHVY="; 5 + version = "5.4.12"; 6 + vendorSha256 = "sha256-P83dH+4vcf+UWphsqqJs03oJ47JLwUYt1cgnuCaM5lA="; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "symfony-cli"; 10 10 repo = "symfony-cli"; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-xYNq5hnkk6OIsnDHhN/vh1LNuP7isTNgtTY2WUwC8x4="; 12 + sha256 = "sha256-8cJqcvBXjyy9Sk5ZYw0LZs1zPVWrc6udL3qKdIjTklI="; 13 13 }; 14 14 15 15 postInstall = ''
+3 -3
pkgs/development/tools/worker-build/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "worker-build"; 5 - version = "0.0.9"; 5 + version = "0.0.10"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloudflare"; 9 9 repo = "workers-rs"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-nrvnIuLBtdMMBcYm8McOxHc/HHYDrogEG9Ii2Bevl+w="; 11 + sha256 = "sha256-p19Q/XAOvDKXRvDWeMRo4C1TnvxYg88CAyldN7AhJDM="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-xLssAmyfHr4EBQ72XZFqybA6ZI1UM2Q2kS5UWmIkteM="; 14 + cargoSha256 = "sha256-8fnsiWZjxCxhv4NWcRIpKbT8vQyhe27es80ttKX/oPs="; 15 15 16 16 buildAndTestSubdir = "worker-build"; 17 17
+3 -3
pkgs/development/tools/wrangler/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "wrangler"; 5 - version = "1.19.11"; 5 + version = "1.19.12"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloudflare"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-8Vka8HTU0YkTS1DeQuqVLsnRGnig7Aiql5e/6NBk7qs="; 11 + sha256 = "sha256-HnenF3X/6tvzwlbuOiQAvB76GrdRsqETG+3fp1fx334="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-bw6Z4SW+NOFFpUJ5xGwdccv8KQnSri/TFxAJp+9fsWk="; 14 + cargoSha256 = "sha256-mJyuqVSiuBKI/x3P865W1/ei5Ya2mV5LVXzaL3peocE="; 15 15 16 16 nativeBuildInputs = [ pkg-config ]; 17 17
+2 -2
pkgs/development/web/grails/default.nix
··· 11 11 in 12 12 stdenv.mkDerivation rec { 13 13 pname = "grails"; 14 - version = "5.1.9"; 14 + version = "5.2.1"; 15 15 16 16 src = fetchurl { 17 17 url = "https://github.com/grails/grails-core/releases/download/v${version}/grails-${version}.zip"; 18 - sha256 = "sha256-gOC1jwFoasxTAhXoX/Mbl5uL1p6NjXcjpz7td8DZUlk="; 18 + sha256 = "sha256-vpElkOK1ZcUBDDP68+PQCMgKglJ2SoYb55Cog23AUhg="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ unzip ];
+8 -4
pkgs/games/gscrabble/default.nix
··· 4 4 5 5 buildPythonApplication { 6 6 pname = "gscrabble"; 7 - version = "unstable-2019-03-11"; 7 + version = "unstable-2020-04-21"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "RaaH"; 11 11 repo = "gscrabble"; 12 - rev = "4b6e4e151a4cd4a4f66a5be2c8616becac3f2a29"; 13 - sha256 = "0a89kqh04x52q7qyv1rfa7xif0pdw3zc0dw5a24msala919g90q2"; 12 + rev = "aba37f062a6b183dcc084c453f395af1dc437ec8"; 13 + sha256 = "sha256-rYpPHgOlPRnlA+Nkvo/J+/8/vl24/Ssk55fTq9oNCz4="; 14 14 }; 15 15 16 16 doCheck = false; ··· 31 31 ''; 32 32 33 33 meta = with lib; { 34 + # Fails to build, propably incompatible with latest Python 35 + # error: Multiple top-level packages discovered in a flat-layout 36 + # https://github.com/RaaH/gscrabble/issues/13 37 + broken = true; 34 38 description = "Golden Scrabble crossword puzzle game"; 35 39 homepage = "https://github.com/RaaH/gscrabble/"; 36 40 license = licenses.gpl2Plus; 37 41 platforms = platforms.linux; 38 - maintainers = [ ]; 42 + maintainers = with maintainers; [ onny ]; 39 43 }; 40 44 }
+2 -2
pkgs/os-specific/linux/ryzenadj/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, pciutils, cmake }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "ryzenadj"; 4 - version = "0.9.0"; 4 + version = "0.10.0"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "FlyGoat"; 8 8 repo = "RyzenAdj"; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-RoKRqqIVY9zjyXzGxHo+J4OV7cKc7CkqsdbpreB7EHc="; 10 + sha256 = "sha256-SEM+HN5ecxp64jZTOouWuFO1HICtc6M+GitnS+bdfb4="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ pciutils cmake ];
+2 -2
pkgs/os-specific/linux/sssd/default.nix
··· 13 13 in 14 14 stdenv.mkDerivation rec { 15 15 pname = "sssd"; 16 - version = "2.7.0"; 16 + version = "2.7.3"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "SSSD"; 20 20 repo = pname; 21 21 rev = version; 22 - sha256 = "sha256-aGPt2ZXMnd8TXC+YhVGYZKbsl3YYkjmYF2yDQB4t/BY="; 22 + sha256 = "sha256-mdgBRFqIT5SvDTeNiv1IbTyd9tcu8YJVfbw49gR6bKI="; 23 23 }; 24 24 25 25 postPatch = ''
+2 -2
pkgs/servers/confluent-platform/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "confluent-platform"; 6 - version = "7.2.0"; 6 + version = "7.2.1"; 7 7 8 8 src = fetchurl { 9 9 url = "https://packages.confluent.io/archive/${lib.versions.majorMinor version}/confluent-${version}.tar.gz"; 10 - sha256 = "sha256-TtHPsrkmZ53mNL+/Ru2eHb0RKoXW/xSagrD6HF2s5ew="; 10 + sha256 = "sha256-vflWZjW8RwaDOwEFy8GHRfcmsHcRKxs8WwFfT66SIM4="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/servers/geospatial/geoserver/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "geoserver"; 5 - version = "2.21.0"; 5 + version = "2.21.1"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/geoserver/GeoServer/${version}/geoserver-${version}-bin.zip"; 9 - sha256 = "sha256-UCr22Ffhnux6eA0w5qoaf5Hvuypsl/FGpK+emi8G0Mc="; 9 + sha256 = "sha256-Ln7vHU/J80edOJbL3lAezXrk+jJQ2mGWY9+61GyiLXk="; 10 10 }; 11 11 12 12 sourceRoot = ".";
+3 -3
pkgs/servers/misc/gobgpd/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gobgpd"; 5 - version = "3.0.0"; 5 + version = "3.4.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "osrg"; 9 9 repo = "gobgp"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-gyaAtFJubvDiz5b7lk6vmPHIqr9ccWK3N2iy4LvYiMg="; 11 + sha256 = "sha256-iV5iohDwJ6LCtX2qvv+Z7jYRukqM606UlAROLb/1Fak="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-RSsvFD3RvYKxdwPDGG3YHVUzKLgwReZkoVabH5KWXMA="; 14 + vendorSha256 = "sha256-hw2cyKJaLBmPRdF4D+GVcVCkTpIK0HZasbMyYfLef1w="; 15 15 16 16 postConfigure = '' 17 17 export CGO_ENABLED=0
+3 -3
pkgs/servers/monitoring/thanos/default.nix
··· 1 1 { lib, buildGoModule, fetchFromGitHub }: 2 2 buildGoModule rec { 3 3 pname = "thanos"; 4 - version = "0.25.2"; 4 + version = "0.27.0"; 5 5 6 6 src = fetchFromGitHub { 7 7 rev = "v${version}"; 8 8 owner = "thanos-io"; 9 9 repo = "thanos"; 10 - sha256 = "sha256-CAeI+5aC8kSQaKOk/5WCQiQMOX82hogAQGP2Em3DJAw="; 10 + sha256 = "sha256-QE096mJRRnO86AeA1COgi8gSWwIczefFP7j7V+lx/t4="; 11 11 }; 12 12 13 - vendorSha256 = "sha256-tHtfS4PnO9n3ckUdaG6dQAIE2D2PG6km4Tqofaab/eg="; 13 + vendorSha256 = "sha256-BXLndaLR/A4FIgSXgQZlMzVdDAiDMXa8VkuZakiq/5M="; 14 14 15 15 doCheck = false; 16 16
+3 -3
pkgs/servers/unpackerr/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "unpackerr"; 5 - version = "0.10.0"; 5 + version = "0.10.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "davidnewhall"; 9 9 repo = "unpackerr"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-o+dE3SX+Q+nhxUO4biEluLEeQhsZgzjXdWTdQcw/H2o="; 11 + sha256 = "sha256-GcuVFLqMDZo4fm/WspEMyoaYKu7g+HMXXrsvRYS+cAs="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-vo5Saq0QEEKi3/0ZXuQDtlMmEIPwshYHHr8h24cD0sI="; 14 + vendorSha256 = "sha256-xoIqhkPOwlBzgaqejU3efK77EcjgvgLKCUZq1bmyokU="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ Cocoa WebKit ]; 17 17
+2 -12
pkgs/tools/admin/awscli2/default.nix
··· 15 15 sha256 = "sha256-Yx3I3RD57Nx6Cvm4moc5zmMbdsHeYiMghDfbQUor38E="; 16 16 }; 17 17 }); 18 - jmespath = super.jmespath.overridePythonAttrs (oldAttrs: rec { 19 - version = "0.10.0"; 20 - src = self.fetchPypi { 21 - inherit (oldAttrs) pname; 22 - inherit version; 23 - sha256 = "sha256-uF0FZ7hmYUmpMXJxLmiSBzQzPAzn6Jt4s+mH9x5e1Pk="; 24 - }; 25 - # pypi missing test suite 26 - doCheck = false; 27 - }); 28 18 }; 29 19 }; 30 20 31 21 in 32 22 with py.pkgs; buildPythonApplication rec { 33 23 pname = "awscli2"; 34 - version = "2.7.14"; # N.B: if you change this, check if overrides are still up-to-date 24 + version = "2.7.20"; # N.B: if you change this, check if overrides are still up-to-date 35 25 36 26 src = fetchFromGitHub { 37 27 owner = "aws"; 38 28 repo = "aws-cli"; 39 29 rev = version; 40 - sha256 = "sha256-ji/hKoYxM3wag9DXy2e/VsJZVGN5UEebWX/ctOVJ42M="; 30 + sha256 = "sha256-o6rs9OMP3154WApboSqUfVn3TRxap0htHczyjAMQe2I="; 41 31 }; 42 32 43 33 propagatedBuildInputs = [
+2 -2
pkgs/tools/admin/trinsic-cli/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "trinsic-cli"; 5 - version = "1.5.0"; 5 + version = "1.6.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/trinsic-id/sdk/releases/download/v${version}/trinsic-cli-vendor-${version}.tar.gz"; 9 - sha256 = "sha256-Z9orGhxbu/ehyaYhY35lYWcZQWNVk+zLSoqwAZwnpLY="; 9 + sha256 = "sha256-lLfsZXVecXisiTyZqbWB7hbn4iQOTsrQxe7F+YnCSFU="; 10 10 }; 11 11 12 12 cargoVendorDir = "vendor";
+3 -3
pkgs/tools/filesystems/httm/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "httm"; 9 - version = "0.13.4"; 9 + version = "0.14.7"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "kimono-koans"; 13 13 repo = pname; 14 14 rev = version; 15 - sha256 = "SNO5YNBx6zyI99n0+ZujJb6AgrJknEEvYWJIh67VUSc="; 15 + sha256 = "sha256-Bn2ZksGUiRNFb9AncPYlhzvjhYRdP89aKJmDP8qnTNg="; 16 16 }; 17 17 18 - cargoSha256 = "+yaWdP8mIlOMzx9Fl4i22DMDpo6zigs2ijrR8pFhk6U="; 18 + cargoSha256 = "sha256-zoK8J8b70sKKDSb2Hhh1v9qY2PlNn26/H18hAWnHETk="; 19 19 20 20 nativeBuildInputs = [ installShellFiles ]; 21 21
+3 -3
pkgs/tools/misc/mcfly/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "mcfly"; 5 - version = "0.6.0"; 5 + version = "0.6.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cantino"; 9 9 repo = "mcfly"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-k8Z/CS1vbnQvoddos7Y0KcM1zB8QDAbXaROjNCyPEN0="; 11 + sha256 = "sha256-rim2ndXjoqIn5P60D5+FFuq0CDAOf29xCJ7rfemMzVU="; 12 12 }; 13 13 14 14 postPatch = '' ··· 17 17 substituteInPlace mcfly.fish --replace '(command which mcfly)' '${placeholder "out"}/bin/mcfly' 18 18 ''; 19 19 20 - cargoSha256 = "sha256-2SKgzVJdtzH9poHx/NJba6+lj/C0PBcEgI/2ITO18Bk="; 20 + cargoSha256 = "sha256-W1SPunH4fgam1JDI+JnLoAKCwx1RLY2JotNSyZAQoSY="; 21 21 22 22 meta = with lib; { 23 23 homepage = "https://github.com/cantino/mcfly";
+2 -2
pkgs/tools/misc/plantuml-server/default.nix
··· 1 1 { lib, stdenv, fetchurl }: 2 2 3 3 let 4 - version = "1.2022.2"; 4 + version = "1.2022.6"; 5 5 in 6 6 stdenv.mkDerivation rec { 7 7 pname = "plantuml-server"; 8 8 inherit version; 9 9 src = fetchurl { 10 10 url = "https://github.com/plantuml/plantuml-server/releases/download/v${version}/plantuml-v${version}.war"; 11 - sha256 = "sha256-h4ulXzZ5L+VPhk2CnZQNxfnEJzWT3B9TNvDEWt4o9Hk="; 11 + sha256 = "sha256-/dl3ZqvHcr92jhg2QDqOPCOuvpjV/9Qrw8pbsOXKZkU="; 12 12 }; 13 13 14 14 dontUnpack = true;
+11 -8
pkgs/tools/misc/steampipe/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "steampipe"; 5 - version = "0.15.0"; 5 + version = "0.15.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "turbot"; 9 9 repo = "steampipe"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ly64p8shbhixLbK9hpDNYhmBKoAt4iXB//pdFSIYZMc="; 11 + sha256 = "sha256-7TIEdT+s6Am2hPiMPKH+YioNfsCmLVZg6BQiO94Xiu0="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-/VU8VNDqU7CMm/lIBqTChyUWP4svVCgsw0CBcp/u+U0="; 14 + vendorSha256 = "sha256-x57IvMKSE2F5bGTC8ao+wLJmYlz8nMh4SoMhtGlwQyE="; 15 15 proxyVendor = true; 16 16 17 + patchPhase = '' 18 + # Patch test that relies on looking up homedir in user struct to prefer ~ 19 + substituteInPlace pkg/steampipeconfig/shared_test.go \ 20 + --replace '"github.com/turbot/go-kit/helpers"' "" \ 21 + --replace 'filepaths.SteampipeDir, _ = helpers.Tildefy("~/.steampipe")' 'filepaths.SteampipeDir = "~/.steampipe"'; 22 + ''; 23 + 17 24 nativeBuildInputs = [ installShellFiles ]; 18 25 19 - ldflags = [ 20 - "-s" 21 - "-w" 22 - ]; 26 + ldflags = [ "-s" "-w" ]; 23 27 24 28 postInstall = '' 25 29 INSTALL_DIR=$(mktemp -d) ··· 30 34 ''; 31 35 32 36 meta = with lib; { 33 - broken = stdenv.isDarwin; 34 37 homepage = "https://steampipe.io/"; 35 38 description = "select * from cloud;"; 36 39 license = licenses.agpl3;
+3 -3
pkgs/tools/networking/gobgp/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gobgp"; 5 - version = "3.0.0"; 5 + version = "3.4.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "osrg"; 9 9 repo = "gobgp"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-gyaAtFJubvDiz5b7lk6vmPHIqr9ccWK3N2iy4LvYiMg="; 11 + sha256 = "sha256-iV5iohDwJ6LCtX2qvv+Z7jYRukqM606UlAROLb/1Fak="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-RSsvFD3RvYKxdwPDGG3YHVUzKLgwReZkoVabH5KWXMA="; 14 + vendorSha256 = "sha256-hw2cyKJaLBmPRdF4D+GVcVCkTpIK0HZasbMyYfLef1w="; 15 15 16 16 postConfigure = '' 17 17 export CGO_ENABLED=0
+2 -2
pkgs/tools/networking/godns/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "godns"; 5 - version = "2.8.6"; 5 + version = "2.8.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "TimothyYe"; 9 9 repo = "godns"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-nWM3EQvh5maIobphHbknBOxZyugNcLjG4Nf4tfo3KWY="; 11 + sha256 = "sha256-BxANSw+SWOpz9vM2I3ODghOqJRi5dBr7j0YVSSBrrto="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-PGqknRGtN0XRGPnAsWzQrlJZG5BzQIhlSysGefkxysE=";
+3 -3
pkgs/tools/networking/lychee/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "lychee"; 12 - version = "0.9.0"; 12 + version = "0.10.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "lycheeverse"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-XjG4u0z3u89Wg2lrcD3T0OqNMgLxmKO1e1zYlGd3dqQ="; 18 + sha256 = "sha256-2osBY7hO0v6fnKrOCYTbO45Ja0UHMoaXZeR1QIp2fT8="; 19 19 }; 20 20 21 - cargoSha256 = "sha256-aXxhKH0dB6VpXfoWJwXBjsxGFcK071MZfCoi4z9uHdc="; 21 + cargoSha256 = "sha256-j+Pykcg9ezLJl4wH31tiLqmAkvQd9go+6wyUmBRTgTs="; 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24
+10 -3
pkgs/tools/text/goawk/default.nix
··· 1 - { buildGoModule, fetchFromGitHub, lib, stdenv }: 1 + { buildGoModule, fetchFromGitHub, lib, stdenv, gawk }: 2 2 3 3 buildGoModule rec { 4 4 pname = "goawk"; 5 - version = "1.18.0"; 5 + version = "1.20.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "benhoyt"; 9 9 repo = "goawk"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-kRakQo18qOzrlvsAKtKTHEacUxDfoWyMmtiM7d5WCvQ="; 11 + sha256 = "sha256-omUtMNB8VBTbihy+VksCduvOENhtPApPBwUIxjVL9fI="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo="; 15 15 16 + checkInputs = [ gawk ]; 17 + 16 18 postPatch = '' 17 19 substituteInPlace goawk_test.go \ 18 20 --replace "TestCommandLine" "SkipCommandLine" \ ··· 23 25 substituteInPlace interp/interp_test.go \ 24 26 --replace "TestShellCommand" "SkipShellCommand" 25 27 ''; 28 + 29 + checkFlags = [ 30 + "-awk" 31 + "${gawk}/bin/gawk" 32 + ]; 26 33 27 34 doCheck = (stdenv.system != "aarch64-darwin"); 28 35
+2 -2
pkgs/tools/text/vale/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "vale"; 5 - version = "2.20.0"; 5 + version = "2.20.1"; 6 6 7 7 subPackages = [ "cmd/vale" ]; 8 8 outputs = [ "out" "data" ]; ··· 11 11 owner = "errata-ai"; 12 12 repo = "vale"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-3W6bSFf23eOUyzyqUczsajBDjYaCxlgB+vg0Bf5o/X0="; 14 + sha256 = "sha256-7n2gAZgt2ri/n0O9Sc2QEbZrzEgnyDh38JVdc+YuT5s="; 15 15 }; 16 16 17 17 vendorSha256 = "sha256-ODzQkNOXEvSOhG6MoJbyxIwduFAW5FQb5hlOn3+io3A=";
+2
pkgs/top-level/all-packages.nix
··· 482 482 483 483 protoc-gen-connect-go = callPackage ../development/tools/protoc-gen-connect-go { }; 484 484 485 + protoc-gen-rust = callPackage ../development/tools/protoc-gen-rust { }; 486 + 485 487 protoc-gen-twirp = callPackage ../development/tools/protoc-gen-twirp { }; 486 488 487 489 protoc-gen-twirp_php = callPackage ../development/tools/protoc-gen-twirp_php { };