depot/third_party/nixpkgs/pkgs/tools/graphics/flam3/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

24 lines
666 B
Nix

{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";
repo = pname;
sha256 = "18iyj16k0sn3fs52fj23lj31xi4avlddhbib6kk309576nlxp17w";
};
buildInputs = [ zlib libpng libxml2 libjpeg ];
meta = with stdenv.lib; {
description = "Cosmic recursive fractal flames";
homepage = "https://flam3.com/";
maintainers = [ maintainers.nand0p ];
platforms = platforms.linux;
license = licenses.gpl3Plus;
};
}