This commit is contained in:
joachimschmidt557 2020-05-23 11:10:30 +02:00
parent 86583c46ae
commit c9bb233ec2
2 changed files with 25 additions and 9 deletions

20
default.nix Normal file
View file

@ -0,0 +1,20 @@
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "my-scripts";
src = ./.;
# src = builtins.fetchGit {
# url = "https://github.com/joachimschmidt557/src";
# ref = "master";
# };
buildInputs = [
youtube-dl ffmpeg # For youtube-mp3
dmenu bluez # For blue
];
installPhase = ''
make DESTDIR="$out" PREFIX="" install
'';
}