mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 20:34:06 +00:00
bootstrap-studio: init at 6.0.1
This commit is contained in:
parent
1e8462800c
commit
cf608e1b5d
36
pkgs/development/web/bootstrap-studio/default.nix
Normal file
36
pkgs/development/web/bootstrap-studio/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib, fetchurl, appimageTools }:
|
||||
|
||||
let
|
||||
pname = "bootstrap-studio";
|
||||
version = "6.0.1";
|
||||
name = "bootstrap-studio-${version}";
|
||||
nameExecutable = pname;
|
||||
src = fetchurl {
|
||||
url = "https://bootstrapstudio.io/releases/desktop/${version}/Bootstrap%20Studio.AppImage";
|
||||
sha256 = "sha256-piRqIB/bCF0IBZfXdlXrc7gmPTIUDbk8xhP7X5ozyWg=";
|
||||
};
|
||||
appimageContents = appimageTools.extractType2 { inherit name src; };
|
||||
in
|
||||
appimageTools.wrapType2 {
|
||||
inherit pname version src;
|
||||
|
||||
extraInstallCommands = ''
|
||||
mv $out/bin/${name} $out/bin/${pname}
|
||||
|
||||
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" ];
|
||||
};
|
||||
}
|
@ -253,6 +253,8 @@ with pkgs;
|
||||
|
||||
bingo = callPackage ../development/tools/bingo {};
|
||||
|
||||
bootstrap-studio = callPackage ../development/web/bootstrap-studio {};
|
||||
|
||||
breakpad = callPackage ../development/misc/breakpad { };
|
||||
|
||||
buf = callPackage ../development/tools/buf { };
|
||||
|
Loading…
Reference in New Issue
Block a user