stuff
This commit is contained in:
parent
4c4bd9e997
commit
771d80c70d
@ -72,7 +72,10 @@ stdenv.mkDerivation {
|
||||
export LUA_PATH="`lua -e 'print(package.path)'`"
|
||||
export LUA_CPATH="`lua -e 'print(package.cpath)'`"
|
||||
mkdir -p $out/bin
|
||||
find . -name kiwmi -prune -o -type l -prune -o -print0 | cpio -0 -v --pass-through $out
|
||||
find . -name kiwmi -prune \
|
||||
-o -type l -prune \
|
||||
-o -name git -prune \
|
||||
-o -print0 | cpio -0 -v --pass-through $out
|
||||
substitute bin/eufonctl.sh $out/bin/eufonctl \
|
||||
--replace SOCAT=socat SOCAT=${socat}/bin/socat
|
||||
makeWrapper ${kiwmi}/bin/kiwmi $out/bin/eufon \
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
let eufon = pkgs.callPckage ./default.nix; in
|
||||
let eufon = pkgs.callPackage ./default.nix {}; in
|
||||
{
|
||||
systemd.services."eufon" = {
|
||||
wants = [
|
||||
@ -52,7 +52,7 @@ let eufon = pkgs.callPckage ./default.nix; in
|
||||
};
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
git eufon
|
||||
];
|
||||
|
||||
boot.postBootCommands = lib.mkOrder (-1) ''
|
||||
|
Loading…
Reference in New Issue
Block a user