Initial commit

This commit is contained in:
Vojtěch Káně
2020-12-03 23:07:44 +01:00
commit 28e22e3422
24 changed files with 1526 additions and 0 deletions

12
db.nix Normal file
View File

@@ -0,0 +1,12 @@
with
import (builtins.fetchTarball {
url = "https://github.com/nixos/nixpkgs/archive/4d373182597cff60b3a820affb5a73dd274e205b.tar.gz";
sha256 = "1kvsnlsq1czgk085rllg1b427n6lv5w3a2z1igfc95n81jpvcf58";
}) {};
let
in
stdenv.mkDerivation rec {
name = "tinyquiz-db-env";
buildInputs = [ postgresql ];
}