summaryrefslogtreecommitdiffstats
path: root/pkgs/shells/mrsh/default.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-01-18 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-01-18 04:20:00 -0500
commitfb055f51aa5a5b5c769c304c2cde07a006b14b02 (patch)
treea5568389d21a3fc201bdec7e4be866fd6b6cda06 /pkgs/shells/mrsh/default.nix
parent5f594c6a7c5e66f6ff5666f3525bf259b2e444e6 (diff)
mrsh: enable on darwin
Diffstat (limited to 'pkgs/shells/mrsh/default.nix')
-rw-r--r--pkgs/shells/mrsh/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/mrsh/default.nix b/pkgs/shells/mrsh/default.nix
index 9036e0854295..bbd56e510b7d 100644
--- a/pkgs/shells/mrsh/default.nix
+++ b/pkgs/shells/mrsh/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchFromGitHub, meson, ninja, pkgconfig, readline }:
+{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, readline }:
stdenv.mkDerivation rec {
pname = "mrsh";
@@ -19,6 +19,6 @@ stdenv.mkDerivation rec {
homepage = "https://mrsh.sh";
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}