28 lines
764 B
Nix
28 lines
764 B
Nix
{ stdenv, nodejs, fetchzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "yarn-${version}";
|
|
version = "1.9.4";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz";
|
|
sha256 = "0lxncqvz66167ijhsi76ds2yp8140d9ywn89y5vm92010irsgs20";
|
|
};
|
|
|
|
buildInputs = [ nodejs ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{bin,libexec/yarn/}
|
|
cp -R . $out/libexec/yarn
|
|
ln -s $out/libexec/yarn/bin/yarn.js $out/bin/yarn
|
|
ln -s $out/libexec/yarn/bin/yarn.js $out/bin/yarnpkg
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://yarnpkg.com/;
|
|
description = "Fast, reliable, and secure dependency management for javascript";
|
|
license = licenses.bsd2;
|
|
maintainers = [ maintainers.offline ];
|
|
};
|
|
}
|