Initial commit

This commit is contained in:
Tim Schubert 2021-01-24 19:00:03 +01:00
commit c2e0ef5886
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
9 changed files with 122 additions and 0 deletions

22
default.nix Normal file
View 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" ];
};
}