diff options
Diffstat (limited to 'users/Profpatsch/netstring')
-rw-r--r-- | users/Profpatsch/netstring/default.nix | 2 | ||||
-rw-r--r-- | users/Profpatsch/netstring/tests/default.nix | 11 |
2 files changed, 4 insertions, 9 deletions
diff --git a/users/Profpatsch/netstring/default.nix b/users/Profpatsch/netstring/default.nix index 333244a0f701..2b21cde388e5 100644 --- a/users/Profpatsch/netstring/default.nix +++ b/users/Profpatsch/netstring/default.nix @@ -27,7 +27,7 @@ let return res ''; - rust-netstring = depot.users.Profpatsch.writers.rustSimpleLib { + rust-netstring = depot.nix.writers.rustSimpleLib { name = "netstring"; } '' pub fn to_netstring(s: &[u8]) -> Vec<u8> { diff --git a/users/Profpatsch/netstring/tests/default.nix b/users/Profpatsch/netstring/tests/default.nix index b9fb5835e55a..f64beb9e9275 100644 --- a/users/Profpatsch/netstring/tests/default.nix +++ b/users/Profpatsch/netstring/tests/default.nix @@ -2,15 +2,10 @@ let - inherit (depot.users.Profpatsch.netstring) - python-netstring - rust-netstring - ; - python-netstring-test = depot.users.Profpatsch.writers.python3 { name = "python-netstring-test"; libraries = p: [ - python-netstring + depot.users.Profpatsch.netstring.python-netstring ]; } '' import netstring @@ -38,10 +33,10 @@ let ) ''; - rust-netstring-test = depot.users.Profpatsch.writers.rustSimple { + rust-netstring-test = depot.nix.writers.rustSimple { name = "rust-netstring-test"; dependencies = [ - rust-netstring + depot.users.Profpatsch.netstring.rust-netstring ]; } '' extern crate netstring; |