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

Commits on Mar 30, 2019

  1. tokei: 9.0.0 -> 9.1.1

    dywedir committed Mar 30, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    jtojnar Jan Tojnar
    Copy the full SHA
    132f26c View commit details
  2. Merge pull request #58583 from dywedir/tokei

    tokei: 9.0.0 -> 9.1.1
    gebner authored Mar 30, 2019
    Copy the full SHA
    05d15b1 View commit details
Showing with 7 additions and 7 deletions.
  1. +7 −7 pkgs/development/tools/misc/tokei/default.nix
14 changes: 7 additions & 7 deletions pkgs/development/tools/misc/tokei/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{ stdenv, fetchFromGitHub, rustPlatform }:

rustPlatform.buildRustPackage rec {
name = "tokei-${version}";
version = "9.0.0";
pname = "tokei";
version = "9.1.1";

src = fetchFromGitHub {
owner = "Aaronepower";
repo = "tokei";
owner = "XAMPPRocky";
repo = pname;
rev = "v${version}";
sha256 = "04d32w3yc98f6swxap19d6vrv8vi3w843cgnmf28mxcy4nbnls1n";
sha256 = "0gz8m5j9p7hwylyl7cdxbli9rpy1p6lsrbym4zk647819pg4k1jp";
};

cargoSha256 = "0vjb4j8qwlmvw55i2jif1a7hwv928h90dzwlpcqb0h6nlv812fav";
cargoSha256 = "1xai3jxvs8r3s3v5d5w40miw6nihnj9gzlzzdrwphmgrkywr88c4";

meta = with stdenv.lib; {
description = "Program that displays statistics about your code";
homepage = https://github.com/Aaronepower/tokei;
homepage = https://github.com/XAMPPRocky/tokei;
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ gebner ];
platforms = platforms.all;