Add mode packages and cpic app

This commit is contained in:
Rodrigo Arias
2020-06-11 19:04:16 +02:00
parent ceaf273219
commit a331ec5f14
5 changed files with 201 additions and 5 deletions

14
bsc/dummy/default.nix Normal file
View File

@@ -0,0 +1,14 @@
{
stdenv
}:
{
hello = stdenv.mkDerivation rec {
name = "dummy";
src = null;
dontUnpack = true;
buildPhase = ''ls -l /'';
};
}