Remove obsolete nix file

pull/3/head
Tristan Daniël Maat 2021-03-31 22:33:10 +01:00
parent 9698113ab3
commit 697d8b8b2c
Signed by: tlater
GPG Key ID: 49670FD774E43268
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
{ 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
pkgs.rustPlatform.buildRustPackage {
pname = "tlaternet";
version = "1.0";
src = ./.;
cargoSha256 = "1gyvc4gc2b799q9hi0af4z14fbg0sgnkqsmajniqyb693ifg9f6d";
verifyCargoDeps = true;
nativeBuildInputs = [
nixpkgs.latest.rustChannels.nightly.rust
pkg-config
];
buildInputs = [
openssl
];
}