c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
26 lines
642 B
Nix
26 lines
642 B
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "gex";
|
|
version = "0.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Piturnah";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-oUcQKpZqqb8wZDpdFfpxLpwdfQlokJE5bsoPwxh+JMM=";
|
|
};
|
|
|
|
cargoHash = "sha256-ZFrIlNysjlXI8n78N2Hkff6gAplipxSQXUWG8HJq8fs=";
|
|
|
|
meta = with lib; {
|
|
description = "Git Explorer: cross-platform git workflow improvement tool inspired by Magit";
|
|
homepage = "https://github.com/Piturnah/gex";
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
|
};
|
|
}
|