nixpkgs/pkgs/by-name/gc/gcli/package.nix

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

34 lines
733 B
Nix
Raw Normal View History

2023-11-24 16:34:29 +01:00
{ lib
, fetchFromGitHub
, stdenv
, curl
, autoreconfHook
, pkg-config
, byacc
, flex
}:
stdenv.mkDerivation rec {
pname = "gcli";
2023-12-11 06:19:17 +01:00
version = "2.1.0";
2023-11-24 16:34:29 +01:00
src = fetchFromGitHub {
owner = "herrhotzenplotz";
repo = "gcli";
rev = version;
2023-12-11 06:19:17 +01:00
hash = "sha256-JZL0AcbrGYBceQ6ctspgnbzlVD4pg95deg9BWUFQCv8=";
2023-11-24 16:34:29 +01:00
};
nativeBuildInputs = [ autoreconfHook pkg-config byacc flex ];
buildInputs = [ curl ];
meta = with lib; {
description = "Portable Git(Hub|Lab|ea) CLI tool";
homepage = "https://herrhotzenplotz.de/gcli/";
changelog = "https://github.com/herrhotzenplotz/gcli/releases/tag/${version}";
license = licenses.bsd2;
mainProgram = "gcli";
maintainers = with maintainers; [ kenran ];
};
}