11 lines
198 B
Nix
11 lines
198 B
Nix
{ pkgs, lib, stdenv, makeWrapper }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ykfde";
|
|
src = ./scripts;
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
installPhase = ''
|
|
install -D --target $out/bin *
|
|
'';
|
|
}
|