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

Commits on Jan 7, 2020

  1. termplay: 2.0.4 -> 2.0.6

    jD91mZM2 committed Jan 7, 2020
    Copy the full SHA
    089c734 View commit details

Commits on Jan 8, 2020

  1. Merge pull request #77207 from jD91mZM2/termplay

    termplay: 2.0.4 -> 2.0.6
    marsam authored Jan 8, 2020
    Copy the full SHA
    992ef89 View commit details
Showing with 5 additions and 4 deletions.
  1. +5 −4 pkgs/tools/misc/termplay/default.nix
9 changes: 5 additions & 4 deletions pkgs/tools/misc/termplay/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{ rustPlatform, fetchFromGitHub, lib, makeWrapper, gst_all_1, libsixel }:

rustPlatform.buildRustPackage rec {
pname = "termplay";
version = "2.0.4";
version = "2.0.6";

src = fetchFromGitHub {
owner = "jD91mZM2";
repo = "termplay";
rev = version;
rev = "v${version}";

sha256 = "0qgx9xmi8n3sq5n5m6gai777sllw9hyki2kwsj2k4h1ykibzq9r0";
sha256 = "1w7hdqgqr1jgxid3k7f2j52wz31gv8bzr9rsm6xzp7nnihp6i45p";
};

cargoBuildFlags = ["--features" "bin"];
cargoSha256 = "06vf2lhdsp7vsln8007zd1xcswn5akk9gnhh7582x1siiijksmn7";
cargoSha256 = "15i7qid91awlk74n823im1n6isqanf4vlcal90n1w9izyddzs9j0";

nativeBuildInputs = [ makeWrapper ];
buildInputs = [