mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
dbus-factory: fix instalation directory for source
This commit is contained in:
parent
c3fe5bd088
commit
38bb704137
1 changed files with 5 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue