generated from nix-community/nur-packages-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
openscad-snapshot: init at 2023.08.25.ai16051
last version with working offscreen rendering
- Loading branch information
1 parent
42b33a8
commit de07d62
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ lib, fetchurl, appimageTools, openscad, makeWrapper }: | ||
|
||
let | ||
pname = "openscad"; | ||
version = "2023.08.25.ai16051"; | ||
src = fetchurl { | ||
url = "https://files.openscad.org/snapshots/OpenSCAD-${version}-x86_64.AppImage"; | ||
sha256 = "sha256-mEGmkL2lL7JxK0nRPLtnfg4vxtkK3URz351eyuRHZPE="; | ||
}; | ||
appimageContents = appimageTools.extractType2 { inherit pname version src; }; | ||
in | ||
appimageTools.wrapType2 { | ||
inherit pname version src; | ||
|
||
extraInstallCommands = '' | ||
source "${makeWrapper}/nix-support/setup-hook" | ||
wrapProgram $out/bin/${pname}-${version} \ | ||
--unset QT_PLUGIN_PATH | ||
''; | ||
|
||
meta = with lib; { | ||
inherit (openscad.meta); | ||
maintainers = with maintainers; [ fliegendewurst ]; | ||
}; | ||
} |