Files
dotfiles/pkgs/customscripts/default.nix
Amneesh Singh e6cb5b2615 ran nixpkgs-fmt
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2022-12-08 01:11:53 +05:30

13 lines
230 B
Nix

{ lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation {
name = "customscripts";
src = ./src;
unpackPhase = ":";
installPhase = ''
mkdir -p $out/bin
cp -r $src/* $out/bin
chmod -R +x $out/bin/*
'';
}