nix-bundle/appimage.nix
2017-11-07 22:29:52 -06:00

13 lines
220 B
Nix

{ stdenv, appimagetool }:
dir:
stdenv.mkDerivation {
name = "appimage";
buildInputs = [ appimagetool ];
buildCommand = ''
ARCH=x86_64 appimagetool ${dir}/*.AppDir
mkdir $out
cp *.AppImage $out
'';
}