Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a306a8e3ec35
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c42e7c477c01
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 24, 2020

  1. namecoind: nc0.15.99-name-tab-beta2 -> nc0.19.1

    r-ryantm authored and Jon committed Mar 24, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    lucasfernog Lucas Fernandes Nogueira
    Copy the full SHA
    c42e7c4 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/blockchains/namecoin.nix
6 changes: 3 additions & 3 deletions pkgs/applications/blockchains/namecoin.nix
Original file line number Diff line number Diff line change
@@ -3,14 +3,14 @@

with stdenv.lib;
stdenv.mkDerivation rec {
version = "nc0.15.99-name-tab-beta2";
version = "nc0.19.1";
name = "namecoin" + toString (optional (!withGui) "d") + "-" + version;

src = fetchFromGitHub {
owner = "namecoin";
repo = "namecoin-core";
rev = version;
sha256 = "1r0v0yvlazmidxp6xhapbdawqb8fhzrdp11d4an5vgxa208s6wdf";
sha256 = "13rdvngrl2w0gk7km3sd9fy8yxzgxlkcwn50ajsbrhgzl8kx4q7m";
};

nativeBuildInputs = [
@@ -40,7 +40,7 @@ stdenv.mkDerivation rec {

meta = {
description = "Decentralized open source information registration and transfer system based on the Bitcoin cryptocurrency";
homepage = https://namecoin.org;
homepage = "https://namecoin.org";
license = licenses.mit;
maintainers = with maintainers; [ doublec AndersonTorres infinisil ];
platforms = platforms.linux;