Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
32 lines
1 KiB
Nix
32 lines
1 KiB
Nix
{ lib, fetchurl, appimageTools }:
|
|
|
|
let
|
|
pname = "bootstrap-studio";
|
|
version = "6.7.3";
|
|
src = fetchurl {
|
|
url = "https://releases.bootstrapstudio.io/${version}/Bootstrap%20Studio.AppImage";
|
|
sha256 = "sha256-Wcqhn4h5UZIYDkC5OcfWLc0hQ3liMD8tcppAva8t62A=";
|
|
};
|
|
appimageContents = appimageTools.extractType2 { inherit pname version src; };
|
|
in
|
|
appimageTools.wrapType2 {
|
|
inherit pname version src;
|
|
|
|
extraInstallCommands = ''
|
|
install -m 444 -D ${appimageContents}/bstudio.desktop -t $out/share/applications
|
|
|
|
substituteInPlace $out/share/applications/bstudio.desktop \
|
|
--replace 'Exec=AppRun' 'Exec=${pname}'
|
|
|
|
install -m 444 -D ${appimageContents}/usr/share/icons/hicolor/0x0/apps/bstudio.png \
|
|
$out/share/icons/hicolor/512x512/apps/bstudio.png
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Drag-and-drop designer for bootstrap";
|
|
homepage = "https://bootstrapstudio.io/";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ khushraj ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|