fstl: 0.9.4 -> 0.10.0 (#264257)

* fstl: 0.9.4 -> 0.10.0

Note that https://github.com/mkeeter/fstl now redirects to
https://github.com/fstl-app/fstl. It would appear the old repo is no
longer updated, and the version under fstl-app is the proper location.

* fstl: address pull request feedback

* fstl: change install hook usage per review suggestion.
This commit is contained in:
Bill 2024-01-22 05:41:16 -08:00 committed by GitHub
parent adc47c0010
commit 90edbf1dd4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,34 +1,30 @@
{ lib, stdenv, fetchFromGitHub, mkDerivation, qtbase, mesa_glu }:
{ lib, stdenv, fetchFromGitHub, mkDerivation, cmake }:
mkDerivation rec {
pname = "fstl";
version = "0.9.4";
version = "0.10.0";
buildInputs = [qtbase mesa_glu];
nativeBuildInputs = [ cmake ];
prePatch = ''
sed -i "s|/usr/bin|$out/bin|g" qt/fstl.pro
'';
installPhase = lib.optionalString stdenv.isDarwin ''
runHook preInstall
preBuild = ''
qmake qt/fstl.pro
'';
postInstall = lib.optionalString stdenv.isDarwin ''
mkdir -p $out/Applications
mv fstl.app $out/Applications
runHook postInstall
'';
src = fetchFromGitHub {
owner = "mkeeter";
owner = "fstl-app";
repo = "fstl";
rev = "v" + version;
sha256 = "028hzdv11hgvcpc36q5scf4nw1256qswh37xhfn5a0iv7wycmnif";
hash = "sha256-z2X78GW/IeiPCnwkeLBCLjILhfMe2sT3V9Gbw4TSf4c=";
};
meta = with lib; {
description = "The fastest STL file viewer";
homepage = "https://github.com/mkeeter/fstl";
homepage = "https://github.com/fstl-app/fstl";
license = licenses.mit;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ tweber ];