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

Commits on Feb 28, 2020

  1. cargo-deb: 1.23.1 -> 1.23.2

    Ma27 committed Feb 28, 2020

    Unverified

    The committer email address is not verified.
    Copy the full SHA
    8b74820 View commit details
  2. cargo-crev: 0.16.0 -> 0.16.1

    Ma27 committed Feb 28, 2020
    Copy the full SHA
    096691a View commit details
Showing with 7 additions and 7 deletions.
  1. +3 −3 pkgs/development/tools/rust/cargo-crev/default.nix
  2. +4 −4 pkgs/tools/package-management/cargo-deb/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/rust/cargo-crev/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "cargo-crev";
version = "0.16.0";
version = "0.16.1";

src = fetchFromGitHub {
owner = "crev-dev";
repo = "cargo-crev";
rev = "v${version}";
sha256 = "1vf78hrc84xgr73r72vmilh24s4qy80a1z6gyk97nd8ipn93m2k5";
sha256 = "16da30zbv8f7w8bxsssmrpzm41a966wby1l6ldyiiszs980qh7c5";
};

cargoSha256 = "0h7izq4sq6nf0gip7ylyglq1mvpfipm4qmjsifb3x559lqwfbxli";
cargoSha256 = "0z365pgdd95apk2zz2n0gx85s0gf8ccfbqippxqn1fdsppihib6g";

nativeBuildInputs = [ pkgconfig ];

8 changes: 4 additions & 4 deletions pkgs/tools/package-management/cargo-deb/default.nix
Original file line number Diff line number Diff line change
@@ -6,18 +6,18 @@

rustPlatform.buildRustPackage rec {
pname = "cargo-deb";
version = "1.23.1";
version = "1.23.2";

src = fetchFromGitHub {
owner = "mmstick";
repo = pname;
rev = "v${version}";
sha256 = "0dkkbyzimnzfyrzmfn83jqg5xq53wzrknixnyh46cniqffqhd663";
rev = "367910e0020de93f45c175c92a37a53ee401978f";
sha256 = "1s0xv818rlafdzpb70c1ldv5iq3hh2jxj7g3l6p7v20q1wx0nnvv";
};

buildInputs = lib.optionals stdenv.isDarwin [ Security ];

cargoSha256 = "0ji6d5a23rzhkkk27iigqcf2zw3mx1p1ap0cryqcj43z5ixdygiw";
cargoSha256 = "0ffzq2gm0f56vyfkmdzxfs5z1xsdj2kcsyc1fdrk4k1cylqn2f47";

meta = with lib; {
description = "Generate Debian packages from information in Cargo.toml";