Files
nixos/utils/pkgs/ykfde/default.nix
2023-09-28 19:34:52 +02:00

12 lines
220 B
Nix

{ pkgs, lib, stdenv, makeWrapper }:
stdenv.mkDerivation {
name = "ykfde";
src = ./scripts;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/bin
install -D --target $out/bin *
'';
}