mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
28 lines
706 B
Nix
28 lines
706 B
Nix
{ lib, fetchFromGitHub, rustPlatform, git }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "gitprompt-rs";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "9ary";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "00xxz7awk01981daabp8m3kwq127y733ynijiwqgs8xvn4nkg8h6";
|
|
};
|
|
|
|
cargoSha256 = "0avs833vb6q1avjbfygm55s83iy942xgqsx6qdzksry44n35s418";
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/main.rs \
|
|
--replace 'Command::new("git")' 'Command::new("${git}/bin/git")'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Simple Git prompt";
|
|
homepage = "https://github.com/9ary/gitprompt-rs";
|
|
license = with licenses; [ mpl20 ];
|
|
maintainers = with maintainers; [ novenary ];
|
|
};
|
|
}
|