dbus-factory: fix instalation directory for source

This commit is contained in:
José Romildo Malaquias 2018-10-21 18:42:39 -03:00
parent c3fe5bd088
commit 38bb704137

View file

@ -18,7 +18,11 @@ stdenv.mkDerivation rec {
go-dbus-generator
];
makeFlags = [ "GOPATH=$(out)/share/gocode" ];
makeFlags = [ "GOPATH=$(out)/share/go" ];
postPatch = ''
sed -i -e 's:/share/gocode:/share/go:' Makefile
'';
meta = with stdenv.lib; {
description = "Generates static DBus bindings for Golang and QML at build-time";