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

Commits on Nov 24, 2018

  1. dfc: 3.0.5 -> 3.1.1

    c0bw3b authored Nov 24, 2018
    Copy the full SHA
    0c1197a View commit details
Showing with 7 additions and 7 deletions.
  1. +7 −7 pkgs/tools/system/dfc/default.nix
14 changes: 7 additions & 7 deletions pkgs/tools/system/dfc/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{stdenv, fetchurl, cmake, gettext}:

stdenv.mkDerivation rec {
name = "dfc-3.0.5";
name = "dfc-${version}";
version = "3.1.1";

src = fetchurl {
url = "https://projects.gw-computing.net/attachments/download/467/${name}.tar.gz";
sha256 = "0yl5dl1nydinji71zz37c7myg3vg9jzxq89rcjqlfcy5dcfpm51w";
url = "https://projects.gw-computing.net/attachments/download/615/${name}.tar.gz";
sha256 = "0m1fd7l85ckb7bq4c5c3g257bkjglm8gq7x42pkmpp87fkknc94n";
};

buildInputs = [ cmake gettext ];
nativeBuildInputs = [ cmake gettext ];

meta = {
homepage = https://projects.gw-computing.net/projects/dfc;
description = "Displays file system space usage using graphs and colors";
license="free";
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [qknight];
platforms = with stdenv.lib.platforms; all;
platforms = stdenv.lib.platforms.all;
};
}