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: 4b2f3cf09b92
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0f3f0caf373c
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Jan 20, 2020

  1. thicket: init at 0.1.3

    Br1ght0ne committed Jan 20, 2020

    Verified

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

Commits on Jan 22, 2020

  1. Merge pull request #78108 from filalex77/thicket-0.1.3

    thicket: init at 0.1.3
    Jon authored Jan 22, 2020
    Copy the full SHA
    0f3f0ca View commit details
Original file line number Diff line number Diff line change
@@ -174,6 +174,8 @@ let

svn-all-fast-export = libsForQt5.callPackage ./svn-all-fast-export { };

thicket = callPackage ./thicket { };

tig = callPackage ./tig { };

topGit = callPackage ./topgit { };
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ lib
, fetchFromGitHub
, crystal
}:

crystal.buildCrystalPackage rec {
pname = "thicket";
version = "0.1.3";

src = fetchFromGitHub {
owner = "taylorthurlow";
repo = pname;
rev = "v${version}";
sha256 = "0hkmmssiwipx373d0zw9a2yn72gqzqzcvwkqbs522m5adz6qmkzw";
};

shardsFile = ./shards.nix;
crystalBinaries.thicket.src = "src/thicket.cr";

meta = with lib; {
description = "A better one-line git log";
homepage = "https://github.com/taylorthurlow/thicket";
license = licenses.mit;
maintainers = with maintainers; [ filalex77 ];
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
ameba = {
owner = "veelenga";
repo = "ameba";
rev = "v0.10.0";
sha256 = "1yjxzwdhigsyjn0qp362jkj85qvg4dsyzal00pgr1srnh2xry912";
};
}