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

Commits on Nov 9, 2020

  1. trezord: 2.0.29 -> 2.0.30

    prusnak committed Nov 9, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    prusnak Pavol Rusnak
    Copy the full SHA
    35294d8 View commit details
  2. Merge pull request #103222 from prusnak/trezord

    trezord: 2.0.29 -> 2.0.30
    mmahut authored Nov 9, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c4229ff View commit details
Showing with 10 additions and 6 deletions.
  1. +10 −6 pkgs/servers/trezord/default.nix
16 changes: 10 additions & 6 deletions pkgs/servers/trezord/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
{ stdenv, buildGoPackage, fetchFromGitHub, trezor-udev-rules }:
{ stdenv
, buildGoModule
, fetchFromGitHub
, trezor-udev-rules
}:

buildGoPackage rec {
buildGoModule rec {
pname = "trezord-go";
version = "2.0.29";

goPackagePath = "github.com/trezor/trezord-go";
version = "2.0.30";

src = fetchFromGitHub {
owner = "trezor";
repo = "trezord-go";
rev = "v${version}";
sha256 = "1ks1fa0027s3xp0z6qp0dxmayvrb4dwwscfhbx7da0khp153f2cp";
sha256 = "1hzvk0wfgg7b4wpqjk3738yqxlv3pj5i7zxwm0jady2h97hmrqrr";
};

vendorSha256 = "0wb959xzyvr5zzjvkfqc422frmf97q5nr460f02wwx0pj6ch0y61";

propagatedBuildInputs = [ trezor-udev-rules ];

meta = with stdenv.lib; {