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

Commits on Jan 9, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    markuskowa Markus Kowalewski
    Copy the full SHA
    8ab57a2 View commit details

Commits on Jan 11, 2020

  1. Merge pull request #77369 from filalex77/cargo-deb-1.23.1

    cargo-deb: 1.23.0 -> 1.23.1
    marsam authored Jan 11, 2020
    Copy the full SHA
    6bd6f26 View commit details
Showing with 11 additions and 7 deletions.
  1. +11 −7 pkgs/tools/package-management/cargo-deb/default.nix
18 changes: 11 additions & 7 deletions pkgs/tools/package-management/cargo-deb/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
{ stdenv, fetchurl, fetchFromGitHub, rustPlatform, Security }:
{ stdenv
, lib
, fetchFromGitHub
, rustPlatform
, Security }:

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

src = fetchFromGitHub {
owner = "mmstick";
repo = "cargo-deb";
repo = pname;
rev = "v${version}";
sha256 = "0jjhbs48f0rprzxnfgav6mjbyvcqnr7xq1qgyjxwd61z8g3m8hx8";
sha256 = "0dkkbyzimnzfyrzmfn83jqg5xq53wzrknixnyh46cniqffqhd663";
};

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

cargoSha256 = "03z9hq873jfsbssnd3kr5vz9lx9mvhb1navb2glm6kkw1k2zm4d2";
cargoSha256 = "0j64dcczxdr9zdch4a241d5adgipzz8sgbw00min9k3p8hbljd9n";

meta = with stdenv.lib; {
meta = with lib; {
description = "Generate Debian packages from information in Cargo.toml";
homepage = "https://github.com/mmstick/cargo-deb";
license = licenses.mit;