Initial commit
This commit is contained in:
commit
0bfe8604ae
9 changed files with 120 additions and 0 deletions
20
default.nix
Normal file
20
default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dadadaScripts";
|
||||
version = "1";
|
||||
|
||||
buildPhase = "";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/
|
||||
cp -r bin $out/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Assorted scripts";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ "dadada" ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue