diff options
author | Claudius Holeksa <mail@keldu.de> | 2023-05-03 19:06:22 +0200 |
---|---|---|
committer | Claudius Holeksa <mail@keldu.de> | 2023-05-03 19:06:22 +0200 |
commit | 2e5932edbda07d5b142df95cfe79268ea7fb997b (patch) | |
tree | 6278b5bf7ea3ddc2dc84517cc6556c231adf3bb9 /forstio/codec-json/.nix | |
parent | 995ad27b18e843059bdeb41d26d0eb1c5dffd139 (diff) |
changing approach to storage
Diffstat (limited to 'forstio/codec-json/.nix')
-rw-r--r-- | forstio/codec-json/.nix/derivation.nix | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/forstio/codec-json/.nix/derivation.nix b/forstio/codec-json/.nix/derivation.nix new file mode 100644 index 0000000..fcc276d --- /dev/null +++ b/forstio/codec-json/.nix/derivation.nix @@ -0,0 +1,34 @@ +{ lib +, stdenvNoCC +, scons +, clang +, clang-tools +, version +, forstio +, gnutls +}: + +let + +in stdenvNoCC.mkDerivation { + pname = "forstio-codec-json"; + inherit version; + + src = ./..; + + enableParallelBuilding = true; + + nativeBuildInputs = [ + scons + clang + clang-tools + ]; + + buildInputs = [ + forstio.core + forstio.async + forstio.codec + ]; + + outputs = ["out" "dev"]; +} |