mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
27 lines
630 B
Nix
27 lines
630 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cmd-wrapped";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "YiNNx";
|
|
repo = "cmd-wrapped";
|
|
rev = version;
|
|
hash = "sha256-YWX4T3EiBIbEG/NGShuHRyxfdVGrqQH6J42EDkRblNQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-CM2IpWs1vGiXHvQNgHyD6cUgMYSkp5+23j+YyF9G9IE=";
|
|
|
|
meta = with lib; {
|
|
description = "Find out what the past year looks like in commandline";
|
|
homepage = "https://github.com/YiNNx/cmd-wrapped";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Cryolitia ];
|
|
mainProgram = "cmd-wrapped";
|
|
};
|
|
}
|