diff --git a/default.nix b/default.nix deleted file mode 100644 index 786743d..0000000 --- a/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ pkgs ? import {} }: - -with pkgs; - -let - moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz); - nixpkgs = import { overlays = [ moz_overlay ]; }; - -in -pkgs.rustPlatform.buildRustPackage { - pname = "tlaternet"; - version = "1.0"; - src = ./.; - cargoSha256 = "1gyvc4gc2b799q9hi0af4z14fbg0sgnkqsmajniqyb693ifg9f6d"; - verifyCargoDeps = true; - nativeBuildInputs = [ - nixpkgs.latest.rustChannels.nightly.rust - pkg-config - ]; - buildInputs = [ - openssl - ]; -}