2021-01-11 07:54:33 +00:00
|
|
|
{lib, stdenv, fetchFromGitHub, zlib, libpng, libxml2, libjpeg }:
|
2017-01-30 01:44:50 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "flam3";
|
2021-01-15 09:19:50 +00:00
|
|
|
version = "3.1.1-${lib.strings.substring 0 7 rev}";
|
2017-01-30 01:44:50 +00:00
|
|
|
rev = "e0801543538451234d7a8a240ba3b417cbda5b21";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
owner = "scottdraves";
|
2019-09-08 23:38:31 +00:00
|
|
|
repo = pname;
|
2017-01-30 01:44:50 +00:00
|
|
|
sha256 = "18iyj16k0sn3fs52fj23lj31xi4avlddhbib6kk309576nlxp17w";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ zlib libpng libxml2 libjpeg ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-01-30 01:44:50 +00:00
|
|
|
description = "Cosmic recursive fractal flames";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://flam3.com/";
|
2021-05-14 14:00:41 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-01-30 01:44:50 +00:00
|
|
|
platforms = platforms.linux;
|
2020-08-16 11:41:49 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2017-01-30 01:44:50 +00:00
|
|
|
};
|
|
|
|
}
|