1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 09:02:46 +00:00
nixpkgs/pkgs/tools/graphics/flam3/default.nix

25 lines
657 B
Nix
Raw Normal View History

{lib, stdenv, fetchFromGitHub, zlib, libpng, libxml2, libjpeg }:
stdenv.mkDerivation rec {
pname = "flam3";
2021-01-15 09:19:50 +00:00
version = "3.1.1-${lib.strings.substring 0 7 rev}";
rev = "e0801543538451234d7a8a240ba3b417cbda5b21";
src = fetchFromGitHub {
inherit rev;
owner = "scottdraves";
2019-09-09 00:38:31 +01:00
repo = pname;
sha256 = "18iyj16k0sn3fs52fj23lj31xi4avlddhbib6kk309576nlxp17w";
};
buildInputs = [ zlib libpng libxml2 libjpeg ];
meta = with lib; {
description = "Cosmic recursive fractal flames";
homepage = "https://flam3.com/";
maintainers = [ maintainers.nand0p ];
platforms = platforms.linux;
license = licenses.gpl3Plus;
};
}