lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 37 lines 1.0 kB view raw
1{ lib, stdenv, fetchFromGitHub, pkg-config, cairo, pango, 2 libX11, libXcomposite, autoconf, automake }: 3 4stdenv.mkDerivation rec { 5 version = "0.2.7-9-g177589f"; 6 pname = "libaosd"; 7 8 src = fetchFromGitHub { 9 owner = "atheme-legacy"; 10 repo = "libaosd"; 11 rev = version; 12 sha256 = "1cn7k0n74p6jp25kxwcyblhmbdvgw3mikvj0m2jh4c6xccfrgb9a"; 13 }; 14 15 nativeBuildInputs = [ autoconf automake pkg-config ]; 16 buildInputs = [ cairo pango libX11 libXcomposite ]; 17 enableParallelBuilding = true; 18 19 preConfigure = '' 20 ./autogen.sh 21 ''; 22 23 meta = with lib; { 24 longDescription = '' 25 libaosd is an advanced on screen display library. 26 27 It supports many modern features like anti-aliased text and 28 composited rendering via XComposite, as well as support for 29 rendering Cairo and Pango layouts. 30 ''; 31 broken = stdenv.isDarwin; 32 homepage = "https://github.com/atheme-legacy/libaosd"; 33 license = licenses.mit; 34 maintainers = with maintainers; [ unode ]; 35 platforms = with platforms; unix; 36 }; 37}