aboutsummaryrefslogtreecommitdiff
path: root/development/libs/atomptr/shell.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-11-05 15:59:38 +0100
committerMx Kookie <kookie@spacekookie.de>2020-12-21 05:19:41 +0100
commit4c4d16d58c3d594938aa3ded26aa7e2fcebfc829 (patch)
treebf2d8039fc5a67b73eae8169e90c2c3f5c00e46e /development/libs/atomptr/shell.nix
parent81dbf21e0b48b0d2a964a897d72fbec7c5803399 (diff)
atomptr: init library with source from netmod-tcp
This is a component that I wanted to extract from `netmod-tcp`, in the qaul.net tree. I was considering just moving this lib to the utils tree in the qaul.net repo, but I decided that I needed this library in too many other programs, and that it really didn't have much to do with qaul.net so it's living here now. Considering that I want to also convey stability in the API, I'll immediately bump it to 1.0.0 as well.
Diffstat (limited to '')
-rw-r--r--development/libs/atomptr/shell.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/development/libs/atomptr/shell.nix b/development/libs/atomptr/shell.nix
new file mode 100644
index 000000000000..3a13912055f1
--- /dev/null
+++ b/development/libs/atomptr/shell.nix
@@ -0,0 +1,8 @@
+with import <nixpkgs> {};
+
+stdenv.mkDerivation {
+ name = "atomicptr";
+ buildInputs = with pkgs; [
+ rustracer rustup clangStdenv
+ ];
+}