More up-to-date blockbench

This commit is contained in:
Emmet 2023-08-04 13:47:41 -05:00
parent f8fea76e72
commit 97e9950ca8
2 changed files with 56 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, python3Packages, nix-doom-emacs, stylix, username, email, dotfilesDir, theme, wm, browser, editor, spawnEditor, term, ... }: { config, lib, pkgs, stdenv, fetchurl, python3Packages, nix-doom-emacs, stylix, username, email, dotfilesDir, theme, wm, browser, editor, spawnEditor, term, ... }:
{ {
# Home Manager needs a bit of information about you and the paths it should # Home Manager needs a bit of information about you and the paths it should
@ -25,10 +25,12 @@
../../user/style/stylix.nix # Styling and themes for my apps ../../user/style/stylix.nix # Styling and themes for my apps
../../user/lang/cc/cc.nix # C and C++ tools ../../user/lang/cc/cc.nix # C and C++ tools
../../user/lang/godot/godot.nix # Game development ../../user/lang/godot/godot.nix # Game development
../../user/pkgs/blockbench.nix # Blockbench
]; ];
home.stateVersion = "22.11"; # Please read the comment before changing. home.stateVersion = "22.11"; # Please read the comment before changing.
home.packages = with pkgs; [ home.packages = with pkgs; [
# Core # Core
zsh zsh

53
user/pkgs/blockbench.nix Normal file
View file

@ -0,0 +1,53 @@
{ config, stdenv, fetchurl, appimageTools, makeWrapper, electron_22, lib, pkgs, ... }:
{
nixpkgs.overlays = [
(self: super:
{
blockbench-electron =
let
inherit (pkgs) fetchurl stdenv appimageTools makeWrapper electron_22;
in
super.blockbench-electron.overrideAttrs (oldAttrs: rec {
pname = "blockbench-electron";
version = "4.8.1";
src = fetchurl {
inherit pname version;
url = "https://github.com/JannisX11/blockbench/releases/download/v${version}/Blockbench_${version}.AppImage";
sha256 = "sha256-CE2wDOt1WBcYmPs4sEyZ3LYvKLequFZH0B3huMYHlwA=";
name = "${pname}-${version}.AppImage";
};
appimageContents = appimageTools.extractType2 {
inherit pname version;
name = "${pname}-${version}";
inherit src;
};
dontUnpack = true;
dontConfigure = true;
dontBuild = true;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin $out/share/${pname} $out/share/applications
cp -a ${appimageContents}/{locales,resources} $out/share/${pname}
cp -a ${appimageContents}/blockbench.desktop $out/share/applications/${pname}.desktop
cp -a ${appimageContents}/usr/share/icons $out/share
substituteInPlace $out/share/applications/${pname}.desktop \
--replace 'Exec=AppRun' 'Exec=${pname}'
runHook postInstall
'';
postFixup = ''
makeWrapper ${electron_22}/bin/electron $out/bin/${pname} \
--add-flags $out/share/${pname}/resources/app.asar \
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ stdenv.cc.cc ]}"
'';
});
}
)
];
}