dee: init at 1.2.7
This commit is contained in:
parent
c419e3c6d6
commit
01e2511668
25
pkgs/development/libraries/dee/default.nix
Normal file
25
pkgs/development/libraries/dee/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, fetchurl, python, pkgconfig
|
||||||
|
, glib, icu, gobjectIntrospection }:
|
||||||
|
|
||||||
|
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 gobjectIntrospection icu ];
|
||||||
|
nativeBuildInputs = [ python pkgconfig ];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -6549,6 +6549,8 @@ in
|
|||||||
dbus_libs = pkgs.dbus.libs;
|
dbus_libs = pkgs.dbus.libs;
|
||||||
dbus_daemon = pkgs.dbus.daemon;
|
dbus_daemon = pkgs.dbus.daemon;
|
||||||
|
|
||||||
|
dee = callPackage ../development/libraries/dee { };
|
||||||
|
|
||||||
dhex = callPackage ../applications/editors/dhex { };
|
dhex = callPackage ../applications/editors/dhex { };
|
||||||
|
|
||||||
double_conversion = callPackage ../development/libraries/double-conversion { };
|
double_conversion = callPackage ../development/libraries/double-conversion { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user