mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
34 lines
775 B
Nix
34 lines
775 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 = "The 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 ];
|
|
};
|
|
}
|