Anderson Torres cab2a1296e
treewide: remove AndersonTorres from maintainers
As I said before, I want to keep a narrow focus on Nixpkgs. Now that I am back
at undergrad, this focus should be even narrower: I will keep my eyes on Emacs,
and nothing else.
2025-02-12 00:36:02 -03:00

39 lines
728 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
libX11,
libGL,
libGLU,
libglut,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "antiprism";
version = "0.32";
src = fetchFromGitHub {
owner = "antiprism";
repo = "antiprism";
tag = finalAttrs.version;
hash = "sha256-0FkaIsZixYHP45H0gytnzlpRvNd8mMYjW22w15z3RH8=";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [
libX11
libGLU
libGL
libglut
];
meta = with lib; {
homepage = "https://www.antiprism.com";
description = "Collection of programs for generating, manipulating, transforming and viewing polyhedra";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ];
};
})