2017-01-30 01:44:50 +00:00
|
|
|
{stdenv, fetchFromGitHub, zlib, libpng, libxml2, libjpeg }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "flam3";
|
|
|
|
version = "3.1.1-${stdenv.lib.strings.substring 0 7 rev}";
|
|
|
|
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 ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Cosmic recursive fractal flames";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://flam3.com/";
|
2017-04-04 15:48:00 +00:00
|
|
|
maintainers = [ maintainers.nand0p ];
|
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
|
|
|
};
|
|
|
|
}
|