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: 26f1ce127699
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 82a484d375a8
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 18, 2020

  1. mrsh: enable on darwin

    marsam committed Jan 18, 2020
    Copy the full SHA
    fb055f5 View commit details

Commits on Jan 19, 2020

  1. Merge pull request #78003 from marsam/enable-mrsh-darwin

    mrsh: enable on darwin
    marsam authored Jan 19, 2020
    Copy the full SHA
    82a484d View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/shells/mrsh/default.nix
4 changes: 2 additions & 2 deletions pkgs/shells/mrsh/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}