remove default.nix

Nix package is not maintained
This commit is contained in:
Richard Patel 2023-06-10 15:55:10 +00:00
parent 9be88c7a5c
commit 2a591e5a99
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
{ pkgs ? import <nixpkgs> { }, lib ? pkgs.lib
, buildGoModule ? pkgs.buildGoModule, }:
buildGoModule rec {
pname = "radiance";
version = "0.0.1";
src = ./.;
vendorHash = "sha256-qK4NJ5JCpNBtEE47JXf2fp2vLUJQLqHZNUzDC40eQMo=";
buildInputs = with pkgs; [ rocksdb libpcap ];
subPackages = [ "cmd/radiance" ];
meta = with lib; {
description = "Solana experiments, written in Go";
homepage = "https://github.com/firedancer-io/radiance";
license = licenses.asl20;
platforms = platforms.linux;
};
}