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

Commits on Sep 5, 2020

  1. tealdeer: 1.3.0 -> 1.4.1

    zowoq committed Sep 5, 2020
    Copy the full SHA
    7abb2b9 View commit details
  2. Merge pull request #97165 from zowoq/tealdeer

    tealdeer: 1.3.0 -> 1.4.1
    dywedir authored Sep 5, 2020
    Copy the full SHA
    91ba115 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/misc/tealdeer/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/misc/tealdeer/default.nix
Original file line number Diff line number Diff line change
@@ -9,16 +9,16 @@

rustPlatform.buildRustPackage rec {
pname = "tealdeer";
version = "1.3.0";
version = "1.4.1";

src = fetchFromGitHub {
owner = "dbrgn";
repo = "tealdeer";
rev = "v${version}";
sha256 = "0l16qqkrya22nnm4j3dxyq4gb85i3c07p10s00bpqcvki6n6v6r8";
sha256 = "1f37qlw4nxdhlqlqzzb4j11gsv26abk2nk2qhbzj77kp4v2b125x";
};

cargoSha256 = "0jvgcf493rmkrh85j0fkf8ffanva80syyxclzkvkrzvvwwj78b5l";
cargoSha256 = "0g5fjj677qzhw3nw7f3n5gghsj2y811bdclxpy8aq2n58gbwvhvc";

buildInputs = if stdenv.isDarwin then [ Security ] else [ openssl ];