2021-09-22 15:38:15 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "glitter";
|
2022-02-20 05:27:41 +00:00
|
|
|
version = "1.5.14";
|
2021-09-22 15:38:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "milo123459";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-02-20 05:27:41 +00:00
|
|
|
sha256 = "sha256-Q1zPPT0gNI96n8PIk1qATRzxm5vmGmRMwZ9j7bb8knk=";
|
2021-09-22 15:38:15 +00:00
|
|
|
};
|
|
|
|
|
2022-02-20 05:27:41 +00:00
|
|
|
cargoSha256 = "sha256-JKM98cpZz2MTa+f2A7NRcKwGjbm4YRabMlV6DHXT64U=";
|
2021-09-22 15:38:15 +00:00
|
|
|
|
|
|
|
# tests require it to be in a git repository
|
|
|
|
preCheck = ''
|
|
|
|
git init
|
|
|
|
'';
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
# error: Found argument '--test-threads' which wasn't expected, or isn't valid in this context
|
|
|
|
checkFlags = [ "--skip" "runs_correctly" ];
|
|
|
|
|
2021-09-22 15:38:15 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A git wrapper that allows you to compress multiple commands into one";
|
|
|
|
homepage = "https://github.com/milo123459/glitter";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ figsoda ];
|
|
|
|
};
|
|
|
|
}
|