From c559db00812ac35ef151a9f80e6a6abd1e19ffe2 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Tue, 12 Mar 2024 14:38:26 +0100 Subject: Base setup for nix --- .nix/derivation.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .nix/derivation.nix (limited to '.nix') diff --git a/.nix/derivation.nix b/.nix/derivation.nix new file mode 100644 index 0000000..8c33c6f --- /dev/null +++ b/.nix/derivation.nix @@ -0,0 +1,16 @@ +{ lib +, stdenv +, python3 +, python3Packages +}: + +stdenv.mkDerivation { + pname = "kel-cv"; + version = "0.0.0"; + + nativeBuildInputs = [ + python3 + ]; + + src = ./..; +} -- cgit v1.2.3