mdsh: 0.5.0 -> 0.6.0

+17 -17
+14 -14
pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchurl 3 4 , makeDesktopItem 4 5 5 - # Common run-time dependencies 6 + # Common run-time dependencies 6 7 , zlib 7 8 8 - # libxul run-time dependencies 9 + # libxul run-time dependencies 9 10 , atk 10 11 , cairo 11 12 , dbus ··· 27 28 , libpulseaudio 28 29 , apulse 29 30 30 - # Media support (implies audio support) 31 + # Media support (implies audio support) 31 32 , mediaSupport ? true 32 33 , ffmpeg_3 33 34 34 35 , gmp 35 36 36 - # Pluggable transport dependencies 37 + # Pluggable transport dependencies 37 38 , python27 38 39 39 - # Wrapper runtime 40 + # Wrapper runtime 40 41 , coreutils 41 42 , glibcLocales 42 43 , gnome3 ··· 44 45 , shared-mime-info 45 46 , gsettings-desktop-schemas 46 47 47 - # Hardening 48 + # Hardening 48 49 , graphene-hardened-malloc 49 - # crashes with intel driver 50 + # crashes with intel driver 50 51 , useHardenedMalloc ? false 51 52 52 - # Whether to disable multiprocess support to work around crashing tabs 53 - # TODO: fix the underlying problem instead of this terrible work-around 53 + # Whether to disable multiprocess support to work around crashing tabs 54 + # TODO: fix the underlying problem instead of this terrible work-around 54 55 , disableContentSandbox ? true 55 56 56 - # Extra preferences 57 + # Extra preferences 57 58 , extraPrefs ? "" 58 59 }: 59 60 60 61 with lib; 61 - 62 62 let 63 63 libPath = makeLibraryPath libPkgs; 64 64 ··· 91 91 fteLibPath = makeLibraryPath [ stdenv.cc.cc gmp ]; 92 92 93 93 # Upstream source 94 - version = "10.0.9"; 94 + version = "10.0.12"; 95 95 96 96 lang = "en-US"; 97 97 ··· 405 405 changelog = "https://gitweb.torproject.org/builders/tor-browser-build.git/plain/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt?h=maint-${version}"; 406 406 platforms = attrNames srcs; 407 407 maintainers = with maintainers; [ offline matejc thoughtpolice joachifm hax404 cap KarlJoad ]; 408 - hydraPlatforms = []; 408 + hydraPlatforms = [ ]; 409 409 # MPL2.0+, GPL+, &c. While it's not entirely clear whether 410 410 # the compound is "libre" in a strict sense (some components place certain 411 411 # restrictions on redistribution), it's free enough for our purposes.
+3 -3
pkgs/development/tools/documentation/mdsh/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "mdsh"; 5 - version = "0.5.0"; 5 + version = "0.6.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "zimbatm"; 9 9 repo = "mdsh"; 10 10 rev = "v${version}"; 11 - sha256 = "02xslf5ssmyklbfsif2d7yk5aaz08n5w0dqiid6v4vlr2mkqcpjl"; 11 + sha256 = "1ki6w3qf8ipcf7ch5120mj16vs7yan8k9zjd25v8x6vbsd1iccgy"; 12 12 }; 13 13 14 - cargoSha256 = "118ykkqlf0x6gcgywx4pg3qawfhfr5q5f51gvrw9s302c1lmgk3g"; 14 + cargoSha256 = "10iqypz8hfyzy1xd78r39z2waa728d97kfnf1bbx8fr4a4pzan7y"; 15 15 16 16 meta = with lib; { 17 17 description = "Markdown shell pre-processor";