nixpkgs/pkgs/by-name/eg/eggdbus/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
576 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, glib, dbus, dbus-glib }:
stdenv.mkDerivation rec {
pname = "eggdbus";
version = "0.6";
2018-11-08 19:31:31 +00:00
src = fetchurl {
url = "https://hal.freedesktop.org/releases/${pname}-${version}.tar.gz";
sha256 = "118hj63ac65zlg71kydv4607qcg1qpdlql4kvhnwnnhar421jnq4";
};
2018-11-08 19:31:31 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ glib dbus dbus-glib ];
meta = with lib; {
homepage = "https://hal.freedesktop.org/releases/";
description = "D-Bus bindings for GObject";
2018-11-08 19:31:31 +00:00
platforms = platforms.linux;
license = licenses.lgpl2;
};
}