From accd05e6c5f41c536a97a7313ea1e635b0863205 Mon Sep 17 00:00:00 2001 From: Claudius Holeksa Date: Tue, 9 May 2023 17:29:41 +0200 Subject: Added nix helpers --- .nix/derivation.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .nix/derivation.nix (limited to '.nix/derivation.nix') diff --git a/.nix/derivation.nix b/.nix/derivation.nix new file mode 100644 index 0000000..a779c57 --- /dev/null +++ b/.nix/derivation.nix @@ -0,0 +1,16 @@ +{ lib +, clang +}: + +stdenvNoCC.mkDerivation { + pname = "kel-test"; + version = "0.0.0"; + + src = ./..; + + nativeBuildInputs = [ + clang + ]; + + output = [ "out" "dev" ]; +} -- cgit v1.2.3