bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
33 lines
771 B
Nix
33 lines
771 B
Nix
{ lib, stdenv, fetchFromGitHub, mkDerivation, cmake }:
|
|
|
|
mkDerivation rec {
|
|
pname = "fstl";
|
|
version = "0.10.0";
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
installPhase = lib.optionalString stdenv.isDarwin ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/Applications
|
|
mv fstl.app $out/Applications
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fstl-app";
|
|
repo = "fstl";
|
|
rev = "v" + version;
|
|
hash = "sha256-z2X78GW/IeiPCnwkeLBCLjILhfMe2sT3V9Gbw4TSf4c=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Fastest STL file viewer";
|
|
mainProgram = "fstl";
|
|
homepage = "https://github.com/fstl-app/fstl";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ tweber ];
|
|
};
|
|
}
|