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

Commits on Oct 27, 2020

  1. Copy the full SHA
    d2cd023 View commit details

Commits on Oct 29, 2020

  1. Merge pull request #101841 from helsinki-systems/gif-for-cli-1.1.2

    gif-for-cli: unstable-2018-08-14 -> 1.1.2
    marsam authored Oct 29, 2020
    Copy the full SHA
    78ea376 View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/tools/misc/gif-for-cli/default.nix
12 changes: 6 additions & 6 deletions pkgs/tools/misc/gif-for-cli/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{ stdenv, fetchFromGitHub, python3Packages, ffmpeg_3, zlib, libjpeg }:
{ stdenv, fetchFromGitHub, python3Packages, ffmpeg, zlib, libjpeg }:

python3Packages.buildPythonApplication {
pname = "gif-for-cli";
version = "unstable-2018-08-14";
version = "1.1.2";

src = fetchFromGitHub {
owner = "google";
repo = "gif-for-cli";
rev = "9696f25fea2e38499b7c248a3151030c3c68bb00";
sha256 = "1rj8wjfsabn27k1ds7a5fdqgf2r28zpz4lvhbzssjfj1yf0mfh7s";
rev = "31f8aa2d617d6d6e941154f60e287c38dd9a74d5";
sha256 = "Bl5o492BUAn1KsscnlMIXCzJuy7xWUsdnxIKZKaRM3M=";
};

checkInputs = [ python3Packages.coverage ];
buildInputs = [ ffmpeg_3 zlib libjpeg ];
propagatedBuildInputs = with python3Packages; [ pillow requests x256 ];
buildInputs = [ zlib libjpeg ];
propagatedBuildInputs = with python3Packages; [ ffmpeg pillow requests x256 ];

meta = with stdenv.lib; {
description = "Render gifs as ASCII art in your cli";