nixpkgs/pkgs/applications/editors/codux/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.0 KiB
Nix
Raw Normal View History

2023-06-18 06:10:20 +00:00
{ lib
, appimageTools
, fetchurl
}:
let
pname = "codux";
2023-11-20 21:08:18 +00:00
version = "15.14.0";
2023-06-18 06:10:20 +00:00
src = fetchurl {
url = "https://github.com/wixplosives/codux-versions/releases/download/${version}/Codux-${version}.x86_64.AppImage";
2023-11-20 21:08:18 +00:00
sha256 = "sha256-GTp9wJrL0TA0Jee1aXKAqmyHfotm7u7gxq/6W8+ermY=";
2023-06-18 06:10:20 +00:00
};
appimageContents = appimageTools.extractType2 { inherit pname version src; };
in
appimageTools.wrapType2 rec {
inherit pname version src;
extraInstallCommands = ''
mv $out/bin/${pname}-${version} $out/bin/${pname}
install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications
cp -r ${appimageContents}/usr/share/icons $out/share
substituteInPlace $out/share/applications/${pname}.desktop --replace 'Exec=AppRun' 'Exec=${pname}'
'';
meta = with lib; {
description = "A visual IDE for React";
homepage = "https://www.codux.com";
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
2023-09-03 01:42:04 +00:00
maintainers = with maintainers; [ dit7ya kashw2 ];
2023-11-27 01:17:53 +00:00
mainProgram = "codux";
2023-06-18 06:10:20 +00:00
};
}