summary refs log tree commit diff
path: root/pkgs/development/libraries/libunique/default.nix
blob: 0cdcbd72bae1da3773bd132b5fa96709b1f93bb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, fetchurl, pkgconfig, glib, gtk, dbus_glib }:

stdenv.mkDerivation rec {
  name = "libunique-1.1.6";
  src = fetchurl {
    url = "mirror://gnome/sources/libunique/1.1/${name}.tar.bz2";
    sha256 = "1fsgvmncd9caw552lyfg8swmsd6bh4ijjsph69bwacwfxwf09j75";
  };

  # patches from Gentoo portage
  patches = [
    ./1.1.6-compiler-warnings.patch
    ./1.1.6-fix-test.patch
    ./1.1.6-G_CONST_RETURN.patch
    ./1.1.6-include-terminator.patch
  ];

  buildInputs = [ pkgconfig glib gtk dbus_glib ];

  # don't make deprecated usages hard errors
  preBuild = ''substituteInPlace unique/dbus/Makefile --replace -Werror ""'';

  doCheck = true;

  meta = {
    homepage = http://live.gnome.org/LibUnique;
    description = "A library for writing single instance applications";
    license = stdenv.lib.licenses.lgpl21;
    platforms = stdenv.lib.platforms.linux;
  };
}