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, fetchurl }:
2
3stdenv.mkDerivation {
4 name = "figlet-2.2.5";
5
6 # some tools can be found here ftp://ftp.figlet.org/pub/figlet/util/
7 src = fetchurl {
8 url = ftp://ftp.figlet.org/pub/figlet/program/unix/figlet-2.2.5.tar.gz;
9 sha256 = "0za1ax15x7myjl8jz271ybly8ln9kb9zhm1gf6rdlxzhs07w925z";
10 };
11
12 installPhase = "make prefix=$out install";
13
14 preConfigure = ''
15 mkdir -p $out/{man/man6,bin}
16 makeFlags="DESTDIR=$out/bin MANDIR=$out/man/man6 DEFAULTFONTDIR=$out/share/figlet CC=cc LD=cc"
17 '';
18
19 meta = {
20 description = "Program for making large letters out of ordinary text";
21 homepage = http://www.figlet.org/;
22 license = stdenv.lib.licenses.afl21;
23 platforms = stdenv.lib.platforms.unix;
24 };
25}