mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
a51a99c690
camelCase package name was a huge inconsistency in GNOME package set.
28 lines
855 B
Nix
28 lines
855 B
Nix
{ stdenv, fetchurl, python, pkgconfig
|
|
, glib, icu, gobject-introspection }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dee-${version}";
|
|
version = "1.2.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://launchpad.net/dee/1.0/${version}/+download/${name}.tar.gz";
|
|
sha256 = "12mzffk0lyd566y46x57jlvb9af152b4dqpasr40zal4wrn37w0v";
|
|
};
|
|
|
|
buildInputs = [ glib gobject-introspection icu ];
|
|
nativeBuildInputs = [ python pkgconfig ];
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=misleading-indentation" ]; # gcc-6
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A library that uses DBus to provide objects allowing you to create Model-View-Controller type programs across DBus";
|
|
homepage = https://launchpad.net/dee;
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|