added simple derivation file

master
Claudius Holeksa 2023-02-12 15:42:28 +01:00
parent a8bbebc1b3
commit 9468de17d1
1 changed files with 18 additions and 0 deletions

18
.nix/derivation.nix Normal file
View File

@ -0,0 +1,18 @@
{ pkgs
, stdenvNoCC
, python3
}:
stdenvNoCC.mkDerivation {
pname = "kel_project_template";
version = "0.0.1";
src = ../.;
nativeBuildInputs = [
];
buildInputs = [
python3
];
}