Initial commit
This commit is contained in:
commit
c2e0ef5886
9 changed files with 122 additions and 0 deletions
22
default.nix
Normal file
22
default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dadadaScripts";
|
||||
version = "1";
|
||||
|
||||
#src = ./src;
|
||||
|
||||
buildPhase = "";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp * $out/bin
|
||||
'';
|
||||
|
||||
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