about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorRenato Alves <alves.rjc@gmail.com>2018-10-01 04:18:06 +0200
committerRenato Alves <alves.rjc@gmail.com>2018-10-21 21:43:54 +0200
commit232b2d7bc0b1e3cebbb8244e068c1dffec29e7f7 (patch)
tree915262a150b028e6446ee0a1cee6074b6f9d63a4 /pkgs/development/libraries
parent2993047f4aa07db4aa62217c5961d3d2ad6d0df3 (diff)
downloadnixlib-232b2d7bc0b1e3cebbb8244e068c1dffec29e7f7.tar
nixlib-232b2d7bc0b1e3cebbb8244e068c1dffec29e7f7.tar.gz
nixlib-232b2d7bc0b1e3cebbb8244e068c1dffec29e7f7.tar.bz2
nixlib-232b2d7bc0b1e3cebbb8244e068c1dffec29e7f7.tar.lz
nixlib-232b2d7bc0b1e3cebbb8244e068c1dffec29e7f7.tar.xz
nixlib-232b2d7bc0b1e3cebbb8244e068c1dffec29e7f7.tar.zst
nixlib-232b2d7bc0b1e3cebbb8244e068c1dffec29e7f7.zip
libaosd: init at 0.2.7-9-g177589f
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/libaosd/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libaosd/default.nix b/pkgs/development/libraries/libaosd/default.nix
new file mode 100644
index 000000000000..e63bfd20c797
--- /dev/null
+++ b/pkgs/development/libraries/libaosd/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, lib, fetchFromGitHub, pkgconfig, cairo, pango,
+  libX11, libXcomposite, autoconf, automake }:
+
+stdenv.mkDerivation rec {
+  version = "0.2.7-9-g177589f";
+  name = "libaosd-${version}";
+
+  src = fetchFromGitHub {
+    owner  = "atheme-legacy";
+    repo   = "libaosd";
+    rev    = "${version}";
+    sha256 = "1cn7k0n74p6jp25kxwcyblhmbdvgw3mikvj0m2jh4c6xccfrgb9a";
+  };
+
+  nativeBuildInputs = [ autoconf automake pkgconfig ];
+  buildInputs = [ cairo pango libX11 libXcomposite ];
+  enableParallelBuilding = true;
+
+  preConfigure = ''
+    ./autogen.sh
+  '';
+
+  meta = with stdenv.lib; {
+    longDescription = ''
+      libaosd is an advanced on screen display library.
+
+      It supports many modern features like anti-aliased text and
+      composited rendering via XComposite, as well as support for
+      rendering Cairo and Pango layouts.
+    '';
+    homepage = https://github.com/atheme-legacy/libaosd;
+    license = licenses.mit;
+    maintainers = with maintainers; [ unode ];
+    platforms = with platforms; unix;
+  };
+}