2021-11-27 18:39:33 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, libjpeg
|
|
|
|
, libpng
|
|
|
|
, libxml2
|
|
|
|
, zlib
|
|
|
|
}:
|
2017-01-30 02:44:50 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "flam3";
|
2021-11-27 18:39:33 +01:00
|
|
|
version = "3.1.1+date=2018-04-12";
|
2017-01-30 02:44:50 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "scottdraves";
|
2019-09-09 01:38:31 +02:00
|
|
|
repo = pname;
|
2021-11-27 18:39:33 +01:00
|
|
|
rev = "7fb50c82e90e051f00efcc3123d0e06de26594b2";
|
|
|
|
hash = "sha256-cKRfmTcyWY2LyxqojTzxD2wnxu5eh3emHi51bhS3gYg=";
|
2017-01-30 02:44:50 +01:00
|
|
|
};
|
|
|
|
|
2021-11-27 18:39:33 +01:00
|
|
|
buildInputs = [
|
|
|
|
libjpeg
|
|
|
|
libpng
|
|
|
|
libxml2
|
|
|
|
zlib
|
|
|
|
];
|
2017-01-30 02:44:50 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://flam3.com/";
|
2021-11-27 18:39:33 +01:00
|
|
|
description = "Cosmic recursive fractal flames";
|
|
|
|
longDescription = ''
|
|
|
|
Flames are algorithmically generated images and animations. The software
|
|
|
|
was originally written in 1992 and released as open source, aka free
|
|
|
|
software. Over the years it has been greatly expanded, and is now widely
|
|
|
|
used to create art and special effects. The shape and color of each image
|
|
|
|
is specified by a long string of numbers - a genetic code of sorts.
|
|
|
|
'';
|
2020-08-16 13:41:49 +02:00
|
|
|
license = licenses.gpl3Plus;
|
2021-11-27 18:39:33 +01:00
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
2022-06-16 15:27:38 +02:00
|
|
|
platforms = platforms.unix;
|
2017-01-30 02:44:50 +01:00
|
|
|
};
|
|
|
|
}
|