summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-01-19 10:32:36 -0500
committerGitHub <noreply@github.com>2020-01-19 10:32:36 -0500
commit82a484d375a88f5a40813c137e2bc7920c063902 (patch)
treef736c4c77385dc3d61ec8a193b3391e761f89581 /pkgs/shells
parent26f1ce12769917426f7cd90a54586cc31cb8b161 (diff)
parentfb055f51aa5a5b5c769c304c2cde07a006b14b02 (diff)
downloadnixpkgs-82a484d375a88f5a40813c137e2bc7920c063902.tar
nixpkgs-82a484d375a88f5a40813c137e2bc7920c063902.tar.gz
nixpkgs-82a484d375a88f5a40813c137e2bc7920c063902.tar.bz2
nixpkgs-82a484d375a88f5a40813c137e2bc7920c063902.tar.lz
nixpkgs-82a484d375a88f5a40813c137e2bc7920c063902.tar.xz
nixpkgs-82a484d375a88f5a40813c137e2bc7920c063902.tar.zst
nixpkgs-82a484d375a88f5a40813c137e2bc7920c063902.zip
Merge pull request #78003 from marsam/enable-mrsh-darwin
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;
   };
 }