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

Commits on Sep 14, 2017

  1. cloc: 1.72 -> 1.74

    rycee committed Sep 14, 2017

    Verified

    This commit was signed with the committer’s verified signature.
    rycee Robert Helgesson
    Copy the full SHA
    d35e443 View commit details
  2. cloc: add myself as maintainer

    rycee committed Sep 14, 2017

    Verified

    This commit was signed with the committer’s verified signature.
    rycee Robert Helgesson
    Copy the full SHA
    a3a8887 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/tools/misc/cloc/default.nix
10 changes: 5 additions & 5 deletions pkgs/tools/misc/cloc/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

stdenv.mkDerivation rec {
name = "cloc-${version}";
version = "1.72";
version = "1.74";

src = fetchFromGitHub {
owner = "AlDanial";
repo = "cloc";
rev = "v${version}";
sha256 = "192z3fzib71y3sjic03ll67xv51igdlpvfhx12yv9wnzkir7lx02";
rev = version;
sha256 = "1ihma4f6f92jp1mvzr4rjrgyh9m5wzrlxngaxfn7g0a8r2kyi65b";
};

sourceRoot = "cloc-v${version}-src/Unix";
sourceRoot = "cloc-${version}-src/Unix";

buildInputs = [ makeWrapper perl AlgorithmDiff RegexpCommon ];

@@ -24,6 +24,6 @@ stdenv.mkDerivation rec {
homepage = https://github.com/AlDanial/cloc;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
maintainers = with stdenv.lib.maintainers; [ fuuzetsu rycee ];
};
}