My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/yarn/default.nix

30 lines
903 B

{ lib, stdenv, nodejs, fetchzip, testers, yarn }:
stdenv.mkDerivation rec {
pname = "yarn";
version = "1.22.18";
src = fetchzip {
url = "https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz";
sha256 = "sha256-gI4v/WPWrNa2i2oct8Ns7bpDzmDCy+c86pGKpNznhh0=";
};
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
'';
passthru.tests = testers.testVersion { package = yarn; };
meta = with lib; {
homepage = "https://yarnpkg.com/";
description = "Fast, reliable, and secure dependency management for javascript";
license = licenses.bsd2;
maintainers = with maintainers; [ offline screendriver ];
platforms = platforms.linux ++ platforms.darwin;
};
}