Use generated name from appimagetool.

Don't use the specified *.AppImage name.
This commit is contained in:
Matthew Bauer 2017-02-06 18:21:18 -06:00
parent 51c628cb02
commit 6e619e2bb7

View File

@ -2,9 +2,11 @@
dir:
stdenv.mkDerivation {
name = "appimage.AppImage";
name = "appimage";
buildInputs = [ appimagetool ];
buildCommand = ''
appimagetool ${dir} $out
appimagetool ${dir}/*.AppDir
mkdir $out
cp *.AppImage $out
'';
}