nixpkgs/pkgs/applications/science/geometry/antiprism/default.nix

30 lines
700 B
Nix
Raw Normal View History

{ lib, stdenv
2020-11-14 03:24:57 +00:00
, 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 lib; {
2020-11-14 03:24:57 +00:00
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 ];
};
}