30 lines
702 B
Nix
30 lines
702 B
Nix
|
{ stdenv
|
||
|
, fetchFromGitHub
|
||
|
, autoreconfHook
|
||
|
, libX11
|
||
|
, libGL
|
||
|
, libGLU
|
||
|
, freeglut }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "antiprism";
|
||
|
version = "0.26";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "antiprism";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "sha256-5FE6IbYKk7eMT985R9NCX3GDXE8SrdVHFcCpKeJvKtQ=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ autoreconfHook ];
|
||
|
buildInputs = [ libX11 libGLU libGL.dev freeglut.dev ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "https://www.antiprism.com";
|
||
|
description = "A collection of programs for generating, manipulating, transforming and viewing polyhedra";
|
||
|
license = with licenses; [ mit ];
|
||
|
maintainers = with maintainers; [ AndersonTorres ];
|
||
|
};
|
||
|
}
|