Add nix build script

pull/1/head
Tristan Daniël Maat 2020-07-11 23:47:57 +01:00
parent 1819a95b3b
commit 4638955d5c
Signed by: tlater
GPG Key ID: 49670FD774E43268
1 changed files with 23 additions and 0 deletions

23
default.nix Normal file
View File

@ -0,0 +1,23 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
let
moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
nixpkgs = import <nixpkgs> { overlays = [ moz_overlay ]; };
in
rustPlatform.buildRustPackage {
pname = "tlaternet";
version = "1.0";
src = ./.;
cargoSha256 = "1gyvc4gc2b799q9hi0af4z14fbg0sgnkqsmajniqyb693ifg9f6d";
verifyCargoDeps = true;
nativeBuildInputs = [
nixpkgs.latest.rustChannels.nightly.rust
pkg-config
];
buildInputs = [
openssl
];
}