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: 000a9108aee6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2fc4fabd6cf6
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 1, 2019

  1. svgbob: fix build

    See https://hydra.nixos.org/build/102480738
    
    Bumping to latest version (which is 0.4.2 according to Cargo.lock) fixes
    the build error. As no dependency changes happened, cargoSha256 doesn't
    need to be updated.
    
    ZHF #68361
    
    (cherry picked from commit b5204d9)
    Ma27 committed Oct 1, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    wyattjoh Wyatt Johnson
    Copy the full SHA
    2fc4fab View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/graphics/svgbob/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/graphics/svgbob/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

rustPlatform.buildRustPackage rec {
pname = "svgbob";
version = "unstable-2018-10-05";
version = "0.4.2";

src = fetchFromGitHub {
owner = "ivanceras";
repo = pname;
rev = "43fb0364e989d0e9a7656b148c947d47cc769622";
sha256 = "1imjj57dx1af3wrs214yzaa2qfk8ld00nj3nx4z450gw2xjjj1gw";
rev = "0febc4377134a2ea3b3cd43ebdf5ea688a0e7432";
sha256 = "1n0w5b3fjgbczy1iw52172x1p3y1bvw1qpz77fkaxkhrkgfd7vwr";
};

sourceRoot = "source/svgbob_cli";