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

Commits on Jul 5, 2018

  1. nix-du: 0.1.2 -> 0.2.0

    symphorien committed Jul 5, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    1db6cd6 View commit details

Commits on Jul 7, 2018

  1. Merge pull request #42395 from symphorien/nix-du-0-2-0

    nix-du: 0.1.2 -> 0.2.0
    infinisil authored Jul 7, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e73783a View commit details
Showing with 7 additions and 6 deletions.
  1. +7 −6 pkgs/tools/package-management/nix-du/default.nix
13 changes: 7 additions & 6 deletions pkgs/tools/package-management/nix-du/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{ stdenv, fetchFromGitHub, rustPlatform, nix, boost, graphviz }:
rustPlatform.buildRustPackage rec {
name = "nix-du-${version}";
version = "0.1.2";
version = "0.2.0";

src = fetchFromGitHub {
owner = "symphorien";
repo = "nix-du";
rev = "v${version}";
sha256 = "1y7ifr4c3v1494swh6akvna0d0rxjy9jw3mw2wdd6vj1xphvmimq";
sha256 = "1n1qgqjbwbb59xnzgz0dn8h8pckh6yq3crh0w6x2sngijwh678x8";
};
cargoSha256 = "0qq7a6ncxnbjvnmly99awqrk9f3z9b55ifil7b0bn5yhk4h9sa6y";
cargoSha256 = "1qidbrkdpf4kliyvy2040qi3a67s8mr2r46rjcblr1v2gar0xgs0";

doCheck = true;
# switch to true when nix includes https://github.com/NixOS/nix/pull/2223 and
# https://github.com/NixOS/nix/pull/2234
doCheck = false;
checkInputs = [ graphviz ];
nativeBuildInputs = [] ++ stdenv.lib.optionals doCheck checkInputs;

buildInputs = [
boost
@@ -25,6 +26,6 @@ rustPlatform.buildRustPackage rec {
homepage = https://github.com/symphorien/nix-du;
license = licenses.lgpl3;
maintainers = [ maintainers.symphorien ];
platforms = platforms.all;
platforms = platforms.unix;
};
}