wip
This commit is contained in:
parent
86583c46ae
commit
c9bb233ec2
2 changed files with 25 additions and 9 deletions
20
default.nix
Normal file
20
default.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue