mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-05 11:44:02 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
74 lines
1.8 KiB
Nix
74 lines
1.8 KiB
Nix
{ lib, stdenv
|
|
, fetchgit
|
|
, fetchpatch
|
|
, pkg-config
|
|
, glib
|
|
, icu
|
|
, gobject-introspection
|
|
, dbus-glib
|
|
, vala
|
|
, python3
|
|
, autoreconfHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dee";
|
|
version = "unstable-2017-06-16";
|
|
|
|
outputs = [ "out" "dev" "py" ];
|
|
|
|
src = fetchgit {
|
|
url = "https://git.launchpad.net/ubuntu/+source/dee";
|
|
rev = "import/1.2.7+17.10.20170616-4ubuntu3";
|
|
sha256 = "09blrdj7229vscp4mkg0fabmcvc6jdpamvblrq86rbky7j2nnwlk";
|
|
};
|
|
|
|
patches = [
|
|
"${src}/debian/patches/gtkdocize.patch"
|
|
"${src}/debian/patches/strict-prototype.patch"
|
|
"${src}/debian/patches/vapi-skip-properties.patch"
|
|
./0001-Fix-build-with-Vala-0.54.patch
|
|
|
|
# Fixes glib 2.62 deprecations
|
|
(fetchpatch {
|
|
name = "dee-1.2.7-deprecated-g_type_class_add_private.patch";
|
|
url = "https://src.fedoraproject.org/rpms/dee/raw/1a9a4ce3377074fabfca653ffe0287cd73aef82f/f/dee-1.2.7-deprecated-g_type_class_add_private.patch";
|
|
sha256 = "13nyprq7bb7lnzkcb7frcpzidbl836ycn5bvmwa2k0nhmj6ycbx5";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
vala
|
|
autoreconfHook
|
|
gobject-introspection
|
|
python3
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
icu
|
|
dbus-glib
|
|
];
|
|
|
|
configureFlags = [
|
|
"--disable-gtk-doc"
|
|
"--with-pygi-overrides-dir=${placeholder "py"}/${python3.sitePackages}/gi/overrides"
|
|
];
|
|
|
|
# Compilation fails after a change in glib where
|
|
# g_string_free now returns a value
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=unused-result";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "A library that uses DBus to provide objects allowing you to create Model-View-Controller type programs across DBus";
|
|
mainProgram = "dee-tool";
|
|
homepage = "https://launchpad.net/dee";
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|