tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
flam3: 3.1.1 -> 3.1.1+date=2018-04-12
AndersonTorres
4 years ago
66236eeb
092154c9
+27
-9
1 changed file
expand all
collapse all
unified
split
pkgs
tools
graphics
flam3
default.nix
+27
-9
pkgs/tools/graphics/flam3/default.nix
···
1
1
-
{lib, stdenv, fetchFromGitHub, zlib, libpng, libxml2, libjpeg }:
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
, libjpeg
5
5
+
, libpng
6
6
+
, libxml2
7
7
+
, zlib
8
8
+
}:
2
9
3
10
stdenv.mkDerivation rec {
4
11
pname = "flam3";
5
5
-
version = "3.1.1-${lib.strings.substring 0 7 rev}";
6
6
-
rev = "e0801543538451234d7a8a240ba3b417cbda5b21";
12
12
+
version = "3.1.1+date=2018-04-12";
7
13
8
14
src = fetchFromGitHub {
9
9
-
inherit rev;
10
15
owner = "scottdraves";
11
16
repo = pname;
12
12
-
sha256 = "18iyj16k0sn3fs52fj23lj31xi4avlddhbib6kk309576nlxp17w";
17
17
+
rev = "7fb50c82e90e051f00efcc3123d0e06de26594b2";
18
18
+
hash = "sha256-cKRfmTcyWY2LyxqojTzxD2wnxu5eh3emHi51bhS3gYg=";
13
19
};
14
20
15
15
-
buildInputs = [ zlib libpng libxml2 libjpeg ];
21
21
+
buildInputs = [
22
22
+
libjpeg
23
23
+
libpng
24
24
+
libxml2
25
25
+
zlib
26
26
+
];
16
27
17
28
meta = with lib; {
18
18
-
description = "Cosmic recursive fractal flames";
19
29
homepage = "https://flam3.com/";
20
20
-
maintainers = with maintainers; [ ];
21
21
-
platforms = platforms.linux;
30
30
+
description = "Cosmic recursive fractal flames";
31
31
+
longDescription = ''
32
32
+
Flames are algorithmically generated images and animations. The software
33
33
+
was originally written in 1992 and released as open source, aka free
34
34
+
software. Over the years it has been greatly expanded, and is now widely
35
35
+
used to create art and special effects. The shape and color of each image
36
36
+
is specified by a long string of numbers - a genetic code of sorts.
37
37
+
'';
22
38
license = licenses.gpl3Plus;
39
39
+
maintainers = with maintainers; [ AndersonTorres ];
40
40
+
platforms = platforms.linux;
23
41
};
24
42
}