Commit 92dd06ae authored by Kiran Ostrolenk's avatar Kiran Ostrolenk Committed by Yt
Browse files

nu_scripts: init at unstable-2023-03-16

parent fb3a9cec
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{ lib
, stdenvNoCC
, fetchFromGitHub
}:

stdenvNoCC.mkDerivation rec {
  pname = "nu_scripts";
  version = "unstable-2023-03-16";

  src = fetchFromGitHub {
    owner = "nushell";
    repo = pname;
    rev = "00b0039653be5dd2e6567ce8feea82064d27ae11";
    sha256 = "0m17cj5wzp94f01kwgs1dh76zwsl2irr7b06i9sb5skqxmmdnjnz";
  };

  installPhase = ''
    runHook preInstall

    mkdir -p $out/share/nu_scripts
    mv ./* $out/share/nu_scripts

    runHook postInstall
  '';

  meta = {
    description = "A place to share Nushell scripts with each other";
    homepage = "https://github.com/nushell/nu_scripts";
    license = lib.licenses.free;

    platforms = lib.platforms.unix;
    maintainers = [ lib.maintainers.CardboardTurkey ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -26800,6 +26800,8 @@ with pkgs;
    inherit (darwin.apple_sdk_11_0.frameworks) AppKit Security;
  };
  nu_scripts = callPackage ../shells/nushell/nu_scripts { };
  nettools = if stdenv.isLinux
    then callPackage ../os-specific/linux/net-tools { }
    else unixtools.nettools;