nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

scala: move text files from $out to appropriate subdirs

Before, this package installed files called LICENSE and NOTICE at the
profile root directory. Which conflicts with other packages with the
same issue. Those files reside now in $out/share/doc/scala/.

+1
+1
pkgs/development/compilers/scala/2.13.nix
··· 19 19 # put docs in correct subdirectory 20 20 mkdir -p $out/share/doc 21 21 mv $out/doc $out/share/doc/scala 22 + mv $out/{LICENSE,NOTICE} $out/share/doc/scala 22 23 23 24 for p in $(ls $out/bin/) ; do 24 25 wrapProgram $out/bin/$p \