nixpkgs/pkgs/applications/graphics/yeetgif/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
659 B
Nix
Raw Normal View History

2019-12-29 18:25:20 +01:00
{ buildGoPackage, fetchFromGitHub, lib }:
buildGoPackage rec {
pname = "yeetgif";
2020-06-15 08:33:14 +02:00
version = "1.23.6";
2019-12-29 18:25:20 +01:00
goPackagePath = "github.com/sgreben/yeetgif";
src = fetchFromGitHub {
owner = "sgreben";
repo = pname;
rev = version;
2020-06-15 08:33:14 +02:00
sha256 = "05z1ylsra60bb4cvr383g9im94zsph1dgicqbv5p73qgs634ckk7";
2019-12-29 18:25:20 +01:00
};
meta = with lib; {
description = "gif effects CLI. single binary, no dependencies. linux, osx, windows. #1 workplace productivity booster. #yeetgif #eggplant #golang";
homepage = "https://github.com/sgreben/yeetgif";
license = with licenses; [ mit asl20 cc-by-nc-sa-40 ];
maintainers = with maintainers; [ ajs124 ];
};
}