!QCCCSJHEsTIfozrZxz:nixos.org

Nix + Go

230 Members
Go packaging for and with Nixpkgs. | Be excellent to each other.49 Servers

You have reached the beginning of time (for this room).


SenderMessageTime
5 Jan 2024
@faust403:matrix.orgVladislav Vasilev

config:

{ fetchFromGitHub
, stdenv
, pkgs
, lib
}: pkgs.buildGoModule rec {
  name = "neutrond";

  version = "2.0.0";

  src = (fetchFromGitHub {
    owner = "neutron-org";
    repo = "neutron";
    rev = "d30ed2fd6dc230a9525c4a73c511428e8086eb32";
    sha256 = "sha256-NuoOlrciBeL2f/A7wlQBqYlYJhSYucXRhLgxdasfyhI=";
  });

  vendorHash = "sha256-uLInKbuL886cfXCyQvIDZJHUC8AK9fR39yNBHDO+Qzc=";
  # vendorSha256 = lib.fakeSha256;

  doCheck = false;
  
  meta = with lib; {
    description = "Neutron node";

    longDescription = ''
      Neutron node to interact with neutron blockchain
    '';

    homepage = "https://github.com/neutron-org/neutron";
    
    license = licenses.asl20; # Apache license

    maintainers = with maintainers; [
      pr0n00gler
      foxpy
    ];

    platforms = platforms.all;
  };
}
15:39:06
@faust403:matrix.orgVladislav VasilevI will replace ${version} later15:39:26
@qbit:tapenet.org@qbit:tapenet.orgrev should be `rev = "v${version}"15:39:39
@qbit:tapenet.org@qbit:tapenet.org * rev should be `rev = "v${version}"` 15:39:42
@qbit:tapenet.org@qbit:tapenet.org name should be pname 15:40:03
@faust403:matrix.orgVladislav VasilevLike that ? It's v2 in commits15:41:29
@faust403:matrix.orgVladislav Vasilevimage.png
Download image.png
15:41:32
@faust403:matrix.orgVladislav VasilevAh, I got it15:44:53
@faust403:matrix.orgVladislav VasilevOKay15:44:55

Show newer messages


Back to Room ListRoom Version: 9