nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 19.03 27 lines 855 B view raw
1{ stdenv, fetchurl, python, pkgconfig 2, glib, icu, gobject-introspection }: 3 4stdenv.mkDerivation rec { 5 name = "dee-${version}"; 6 version = "1.2.7"; 7 8 src = fetchurl { 9 url = "https://launchpad.net/dee/1.0/${version}/+download/${name}.tar.gz"; 10 sha256 = "12mzffk0lyd566y46x57jlvb9af152b4dqpasr40zal4wrn37w0v"; 11 }; 12 13 buildInputs = [ glib gobject-introspection icu ]; 14 nativeBuildInputs = [ python pkgconfig ]; 15 16 NIX_CFLAGS_COMPILE = [ "-Wno-error=misleading-indentation" ]; # gcc-6 17 18 enableParallelBuilding = true; 19 20 meta = with stdenv.lib; { 21 description = "A library that uses DBus to provide objects allowing you to create Model-View-Controller type programs across DBus"; 22 homepage = https://launchpad.net/dee; 23 license = licenses.lgpl3; 24 platforms = platforms.linux; 25 maintainers = with maintainers; [ abbradar ]; 26 }; 27}