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 rec {
4 name = "fribidi-${version}";
5 version = "0.19.6";
6
7 src = fetchurl {
8 url = "http://fribidi.org/download/${name}.tar.bz2";
9 sha256 = "0zg1hpaml34ny74fif97j7ngrshlkl3wk3nja3gmlzl17i1bga6b";
10 };
11
12 hardeningDisable = [ "format" ];
13
14 meta = with stdenv.lib; {
15 homepage = http://fribidi.org/;
16 description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)";
17 license = licenses.gpl2;
18 platforms = platforms.unix;
19 };
20}