mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
7bd65d54f7
While looking at the sphinx package I noticed it was heavily undermaintained, which is when we noticed nand0p has been inactive for roughly 18 months. It is therefore prudent to assume they will not be maintaining their packages, modules and tests. - Their last contribution to nixpkgs was in 2019/12 - On 2021/05/08 I wrote them an email to the address listed in the maintainer-list, which they didn't reply to.
25 lines
656 B
Nix
25 lines
656 B
Nix
{lib, stdenv, fetchFromGitHub, zlib, libpng, libxml2, libjpeg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "flam3";
|
|
version = "3.1.1-${lib.strings.substring 0 7 rev}";
|
|
rev = "e0801543538451234d7a8a240ba3b417cbda5b21";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "scottdraves";
|
|
repo = pname;
|
|
sha256 = "18iyj16k0sn3fs52fj23lj31xi4avlddhbib6kk309576nlxp17w";
|
|
};
|
|
|
|
buildInputs = [ zlib libpng libxml2 libjpeg ];
|
|
|
|
meta = with lib; {
|
|
description = "Cosmic recursive fractal flames";
|
|
homepage = "https://flam3.com/";
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|