move dbus-proxy.nix
This commit is contained in:
parent
786d9fc68a
commit
95e562b4c1
29
saturn/dbus-proxy.nix
Normal file
29
saturn/dbus-proxy.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lua, lgi, buildLuaPackage, fetchFromGitHub }:
|
||||
let
|
||||
|
||||
simpleName = "dbus_proxy";
|
||||
|
||||
in
|
||||
# TODO: add busted and checkPhase?
|
||||
buildLuaPackage rec {
|
||||
version = "0.10.2";
|
||||
pname = simpleName;
|
||||
# name = "${simpleName}-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "stefano-m";
|
||||
repo = "lua-${simpleName}";
|
||||
rev = "v${version}";
|
||||
sha256 = "0kl8ff1g1kpmslzzf53cbzfl1bmb5cb91w431hbz0z0vdrramh6l";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ lgi ];
|
||||
|
||||
buildPhase = ":";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p "$out/share/lua/${lua.luaversion}"
|
||||
cp -r src/${simpleName} "$out/share/lua/${lua.luaversion}/"
|
||||
'';
|
||||
|
||||
}
|
@ -15,7 +15,7 @@ let fennel = fetchurl {
|
||||
url = "https://fennel-lang.org/downloads/fennel-1.0.0";
|
||||
hash = "sha256:1nha32yilzagfwrs44hc763jgwxd700kaik1is7x7lsjjvkgapw7";
|
||||
};
|
||||
dbusProxy = callPackage ../beehive/dbus-proxy.nix {
|
||||
dbusProxy = callPackage ./dbus-proxy.nix {
|
||||
inherit (lua53Packages) lgi buildLuaPackage;
|
||||
lua = lua5_3;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user