summary refs log tree commit diff
path: root/pkgs/shells
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
parent5f594c6a7c5e66f6ff5666f3525bf259b2e444e6 (diff)
downloadnixpkgs-fb055f51aa5a5b5c769c304c2cde07a006b14b02.tar
nixpkgs-fb055f51aa5a5b5c769c304c2cde07a006b14b02.tar.gz
nixpkgs-fb055f51aa5a5b5c769c304c2cde07a006b14b02.tar.bz2
nixpkgs-fb055f51aa5a5b5c769c304c2cde07a006b14b02.tar.lz
nixpkgs-fb055f51aa5a5b5c769c304c2cde07a006b14b02.tar.xz
nixpkgs-fb055f51aa5a5b5c769c304c2cde07a006b14b02.tar.zst
nixpkgs-fb055f51aa5a5b5c769c304c2cde07a006b14b02.zip
mrsh: enable on darwin
Diffstat (limited to 'pkgs/shells')
-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 9036e085429..bbd56e510b7 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;
   };
 }