Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e2d4435bb9c1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a225186cae6a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Apr 15, 2020

  1. mksh: 57 -> 58

    AndersonTorres committed Apr 15, 2020
    Copy the full SHA
    5afd698 View commit details
  2. Copy the full SHA
    a225186 View commit details
Showing with 5 additions and 3 deletions.
  1. +5 −3 pkgs/shells/mksh/default.nix
8 changes: 5 additions & 3 deletions pkgs/shells/mksh/default.nix
Original file line number Diff line number Diff line change
@@ -2,17 +2,19 @@

stdenv.mkDerivation rec {
pname = "mksh";
version = "57";
version = "58";

src = fetchurl {
urls = [
"https://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz"
"http://pub.allbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz"
];
sha256 = "0xdykm1z710wriwd6nc8s8lwk2dwjl63dq96xxaawlid31a1241x";
sha256 = "1337zjvzh14yncg9igdry904a3ns52l8rnm1kcq262w7f5xyp2v0";
};

buildPhase = ''sh ./Build.sh -r -c lto'';
dontConfigure = true;

buildPhase = ''sh ./Build.sh -r'';

installPhase = ''
install -D -m 755 mksh $out/bin/mksh