icon-lang: refactor doc location

This commit is contained in:
Kovacsics Robert 2020-02-25 17:40:13 +00:00
parent cc9e0dbad8
commit 99addb8b34

View file

@ -30,7 +30,12 @@ stdenv.mkDerivation rec {
in
"make ${target} name=${platform}";
installPhase = "make Install dest=$out";
installPhase = ''
make Install dest=$out
rm $out/README
mkdir -p $out/share/doc
mv $out/doc $out/share/doc/icon
'';
meta = with stdenv.lib; {
description = ''A very high level general-purpose programming language'';