diff options
author | Ben Sima <ben@bsima.me> | 2018-06-29 20:09:42 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2018-06-29 20:09:42 -0700 |
commit | 87f9f02d1fa62121173c33175a2107fbfb06ce30 (patch) | |
tree | adb3178e4fa916b2496d493d089b6b0ce2dea69f /xyo-networks/default.nix | |
parent | e81da383d908d4b7597cb73dc489f5162fcf19bf (diff) |
Prototype-quality printf
Needed help on the convert function
Diffstat (limited to 'xyo-networks/default.nix')
-rw-r--r-- | xyo-networks/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/xyo-networks/default.nix b/xyo-networks/default.nix new file mode 100644 index 0000000..ee63f97 --- /dev/null +++ b/xyo-networks/default.nix @@ -0,0 +1,7 @@ +with (import <nixpkgs> {}); + +stdenv.mkDerivation { + name = "my_printf"; + builder = "${bash}/bin/bash"; + src = ./.; +} |