mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
45 lines
941 B
Nix
45 lines
941 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
darwin,
|
|
testers,
|
|
gitMinimal,
|
|
serie,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "serie";
|
|
version = "0.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lusingander";
|
|
repo = "serie";
|
|
rev = "v${version}";
|
|
hash = "sha256-sFxIGC9zg8D0qhHpT1fAzrU25AxBbJRPzD2c+H8Z/1Y=";
|
|
};
|
|
|
|
cargoHash = "sha256-JaR1BcKigMa27l8kdsRoClb3ifPtob3+sa2cqnpFeFs=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin (
|
|
with darwin.apple_sdk.frameworks;
|
|
[
|
|
CoreGraphics
|
|
AppKit
|
|
]
|
|
);
|
|
|
|
nativeCheckInputs = [ gitMinimal ];
|
|
|
|
passthru.tests.version = testers.testVersion { package = serie; };
|
|
|
|
meta = with lib; {
|
|
description = "A rich git commit graph in your terminal, like magic";
|
|
homepage = "https://github.com/lusingander/serie";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
mainProgram = "serie";
|
|
};
|
|
}
|