nu_scripts: init at unstable-2023-03-16

This commit is contained in:
Kiran Ostrolenk 2023-02-19 22:13:03 +00:00 committed by Yt
parent fb3a9cec93
commit 92dd06ae1d
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ 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 ];
};
}

View File

@ -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;