forked from mirrors/nixpkgs
nu_scripts: init at unstable-2023-03-16
This commit is contained in:
parent
fb3a9cec93
commit
92dd06ae1d
34
pkgs/shells/nushell/nu_scripts/default.nix
Normal file
34
pkgs/shells/nushell/nu_scripts/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue