summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-11-27 14:39:33 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-11-27 17:12:49 -0300
commit66236eeb4bb0c8ef1b61e4ffe2d829acbbd2ffaf (patch)
tree6822fb6f35560dde194c5dae1b65c9f5bb8119a1 /pkgs/tools/graphics
parent092154c92f986204a4859aa2ade24a53f0259237 (diff)
flam3: 3.1.1 -> 3.1.1+date=2018-04-12
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/flam3/default.nix36
1 files changed, 27 insertions, 9 deletions
diff --git a/pkgs/tools/graphics/flam3/default.nix b/pkgs/tools/graphics/flam3/default.nix
index bd959e3227e7..01e3693259a5 100644
--- a/pkgs/tools/graphics/flam3/default.nix
+++ b/pkgs/tools/graphics/flam3/default.nix
@@ -1,24 +1,42 @@
-{lib, stdenv, fetchFromGitHub, zlib, libpng, libxml2, libjpeg }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, libjpeg
+, libpng
+, libxml2
+, zlib
+}:
stdenv.mkDerivation rec {
pname = "flam3";
- version = "3.1.1-${lib.strings.substring 0 7 rev}";
- rev = "e0801543538451234d7a8a240ba3b417cbda5b21";
+ version = "3.1.1+date=2018-04-12";
src = fetchFromGitHub {
- inherit rev;
owner = "scottdraves";
repo = pname;
- sha256 = "18iyj16k0sn3fs52fj23lj31xi4avlddhbib6kk309576nlxp17w";
+ rev = "7fb50c82e90e051f00efcc3123d0e06de26594b2";
+ hash = "sha256-cKRfmTcyWY2LyxqojTzxD2wnxu5eh3emHi51bhS3gYg=";
};
- buildInputs = [ zlib libpng libxml2 libjpeg ];
+ buildInputs = [
+ libjpeg
+ libpng
+ libxml2
+ zlib
+ ];
meta = with lib; {
- description = "Cosmic recursive fractal flames";
homepage = "https://flam3.com/";
- maintainers = with maintainers; [ ];
- platforms = platforms.linux;
+ 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.
+ '';
license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ AndersonTorres ];
+ platforms = platforms.linux;
};
}