Revert "mdsh: 0.5.0 -> 0.6.0"

This was pushed by mistake!

This reverts commit 7ee7b5deec517a238a1618202aadbfbc2aadb55b.

+17 -17
+14 -14
pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix
··· 1 - { lib 2 - , stdenv 1 + { lib, stdenv 3 2 , fetchurl 4 3 , makeDesktopItem 5 4 6 - # Common run-time dependencies 5 + # Common run-time dependencies 7 6 , zlib 8 7 9 - # libxul run-time dependencies 8 + # libxul run-time dependencies 10 9 , atk 11 10 , cairo 12 11 , dbus ··· 28 27 , libpulseaudio 29 28 , apulse 30 29 31 - # Media support (implies audio support) 30 + # Media support (implies audio support) 32 31 , mediaSupport ? true 33 32 , ffmpeg_3 34 33 35 34 , gmp 36 35 37 - # Pluggable transport dependencies 36 + # Pluggable transport dependencies 38 37 , python27 39 38 40 - # Wrapper runtime 39 + # Wrapper runtime 41 40 , coreutils 42 41 , glibcLocales 43 42 , gnome3 ··· 45 44 , shared-mime-info 46 45 , gsettings-desktop-schemas 47 46 48 - # Hardening 47 + # Hardening 49 48 , graphene-hardened-malloc 50 - # crashes with intel driver 49 + # crashes with intel driver 51 50 , useHardenedMalloc ? false 52 51 53 - # Whether to disable multiprocess support to work around crashing tabs 54 - # TODO: fix the underlying problem instead of this terrible work-around 52 + # Whether to disable multiprocess support to work around crashing tabs 53 + # TODO: fix the underlying problem instead of this terrible work-around 55 54 , disableContentSandbox ? true 56 55 57 - # Extra preferences 56 + # Extra preferences 58 57 , extraPrefs ? "" 59 58 }: 60 59 61 60 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.12"; 94 + version = "10.0.9"; 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.6.0"; 5 + version = "0.5.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "zimbatm"; 9 9 repo = "mdsh"; 10 10 rev = "v${version}"; 11 - sha256 = "1ki6w3qf8ipcf7ch5120mj16vs7yan8k9zjd25v8x6vbsd1iccgy"; 11 + sha256 = "02xslf5ssmyklbfsif2d7yk5aaz08n5w0dqiid6v4vlr2mkqcpjl"; 12 12 }; 13 13 14 - cargoSha256 = "10iqypz8hfyzy1xd78r39z2waa728d97kfnf1bbx8fr4a4pzan7y"; 14 + cargoSha256 = "118ykkqlf0x6gcgywx4pg3qawfhfr5q5f51gvrw9s302c1lmgk3g"; 15 15 16 16 meta = with lib; { 17 17 description = "Markdown shell pre-processor";