2018-02-25 02:23:58 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, gtk2, dbus-glib }:
|
2013-02-09 17:38:26 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-25 07:46:07 +01:00
|
|
|
pname = "libunique";
|
|
|
|
version = "1.1.6";
|
|
|
|
|
2013-02-09 17:38:26 +00:00
|
|
|
src = fetchurl {
|
2019-04-25 07:46:07 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
|
2013-02-09 17:38:26 +00:00
|
|
|
sha256 = "1fsgvmncd9caw552lyfg8swmsd6bh4ijjsph69bwacwfxwf09j75";
|
|
|
|
};
|
|
|
|
|
2019-09-14 21:45:31 +01:00
|
|
|
# glib-2.62 deprecations
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-DGLIB_DISABLE_DEPRECATION_WARNINGS" ];
|
2018-09-12 12:29:52 +01:00
|
|
|
|
2019-04-25 07:46:07 +01:00
|
|
|
# Patches from Gentoo portage
|
2013-02-09 17:38:26 +00:00
|
|
|
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
|
2019-04-25 07:46:07 +01:00
|
|
|
] ++ [ ./gcc7-bug.patch ];
|
2013-02-09 17:38:26 +00:00
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-25 02:23:58 +00:00
|
|
|
buildInputs = [ glib gtk2 dbus-glib ];
|
2013-02-09 17:38:26 +00:00
|
|
|
|
2019-04-25 07:46:07 +01:00
|
|
|
# Don't make deprecated usages hard errors
|
2013-02-09 17:38:26 +00:00
|
|
|
preBuild = ''substituteInPlace unique/dbus/Makefile --replace -Werror ""'';
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
2019-05-04 14:59:55 +01:00
|
|
|
homepage = "https://wiki.gnome.org/Attic/LibUnique";
|
2013-02-09 17:38:26 +00:00
|
|
|
description = "A library for writing single instance applications";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2013-02-09 17:38:26 +00:00
|
|
|
};
|
|
|
|
}
|