aboutsummaryrefslogtreecommitdiff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorMasanori Ogino <167209+omasanori@users.noreply.github.com>2020-10-28 18:41:42 +0900
committerMasanori Ogino <167209+omasanori@users.noreply.github.com>2020-11-02 04:45:59 +0900
commit955926a6207b42b08afd8b2dd3a40e3583fc1f34 (patch)
tree2eaf91f4035ec3a6aabdc203ab7b903760b89bf7 /pkgs/shells
parentedce0de0d2961ffbd8e4a42d06e82c559234c698 (diff)
mrsh: 2020-01-08 -> 2020-07-27 etc.
- `doCheck` is enabled now. - It marked as broken on Darwin due to [build failures][macos-issue]. [macos-issue]: https://github.com/NixOS/nixpkgs/pull/101910#issuecomment-719923175 Reference: https://github.com/emersion/mrsh/compare/ef21854fc9..0da902c0ee Signed-off-by: Masanori Ogino <167209+omasanori@users.noreply.github.com>
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/mrsh/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/shells/mrsh/default.nix b/pkgs/shells/mrsh/default.nix
index bbd56e510b7d..cc7e3e27be6d 100644
--- a/pkgs/shells/mrsh/default.nix
+++ b/pkgs/shells/mrsh/default.nix
@@ -2,23 +2,26 @@
stdenv.mkDerivation rec {
pname = "mrsh";
- version = "2020-01-08";
+ version = "2020-07-27";
src = fetchFromGitHub {
owner = "emersion";
repo = "mrsh";
- rev = "ef21854fc9ce172fb1f7f580b19a89d030d67c65";
- sha256 = "1iyxmwl61p2x9v9b22416n4lnrlwjqyxybq35x8bcbjxkwypp943";
+ rev = "0da902c0ee6f443fe703498e60f266af7f12537e";
+ sha256 = "1yr09ln5p1s48aj8xv2d6dy0pahqvd86fkiwyc6zrjfq80igxf05";
};
nativeBuildInputs = [ meson ninja pkgconfig ];
buildInputs = [ readline ];
+ doCheck = true;
+
meta = with stdenv.lib; {
description = "A minimal POSIX shell";
homepage = "https://mrsh.sh";
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer ];
platforms = platforms.unix;
+ broken = stdenv.isDarwin;
};
}