fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchgit, cairo, libjpeg, libXft, pkgconfig, python2 }:
2
3stdenv.mkDerivation rec {
4 name = "ntk-${version}";
5 version = "2014-10-18";
6 src = fetchgit {
7 url = "git://git.tuxfamily.org/gitroot/non/fltk.git";
8 rev = "5719b0044d9f267de5391fab006370cc7f4e70bd";
9 sha256 = "7ecedb049e00cc9a1bb0e0e2f02e5a734c873653b68551e6573474c04abe1821";
10 };
11
12 buildInputs = [
13 cairo libjpeg libXft pkgconfig python2
14 ];
15
16 buildPhase = ''
17 python waf configure --prefix=$out
18 python waf
19 '';
20
21 installPhase = ''
22 python waf install
23 '';
24
25 meta = {
26 description = "Fork of FLTK 1.3.0 with additional functionality";
27 version = "${version}";
28 homepage = http://non.tuxfamily.org/;
29 license = stdenv.lib.licenses.lgpl21;
30 maintainers = [ stdenv.lib.maintainers.magnetophon ];
31 platforms = stdenv.lib.platforms.linux;
32 };
33}