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: 43db1be418db
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dad49d0b5ec0
Choose a head ref
  • 4 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 2, 2020

  1. clash: 0.16.0 -> 0.17.1

    Br1ght0ne committed Jan 2, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    939ee50 View commit details
  2. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    2e43dd0 View commit details
  3. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    0f13282 View commit details
  4. Merge pull request #76815 from filalex77/clash-0.17.1

    clash: 0.16.0 -> 0.17.1
    Ma27 authored Jan 2, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    dad49d0 View commit details
Showing with 10 additions and 4 deletions.
  1. +10 −4 pkgs/tools/networking/clash/default.nix
14 changes: 10 additions & 4 deletions pkgs/tools/networking/clash/default.nix
Original file line number Diff line number Diff line change
@@ -2,22 +2,28 @@

buildGoModule rec {
pname = "clash";
version = "0.16.0";
version = "0.17.1";

src = fetchFromGitHub {
owner = "Dreamacro";
repo = pname;
rev = "v${version}";
sha256 = "1k6afpazggpd7cabbw6ldv77bjj43083d5diy2w0iq5nw69gmwd3";
sha256 = "0zhbaw9jzl9wqc7yx8yxqlb6fwkss4pqkv26069qg6nsk584ndnf";
};

modSha256 = "1fx53df67mq7p3ampr96x8hd99v2991alb16v8iq36f032raa32f";
goPackagePath = "github.com/Dreamacro/clash";
modSha256 = "0vyd61bin7hmpdqrmrikc776mgif9v25627n8hzi65kiycv40kgx";

buildFlagsArray = [
"-ldflags="
"-X ${goPackagePath}/constant.Version=${version}"
];

meta = with stdenv.lib; {
description = "A rule-based tunnel in Go";
homepage = "https://github.com/Dreamacro/clash";
license = licenses.gpl3;
maintainers = with maintainers; [ contrun ];
maintainers = with maintainers; [ contrun filalex77 ];
platforms = platforms.all;
};
}