mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #278998 from Cryolitia/cmd-unwrapped
cmd-wrapped: init at 0.1.1
This commit is contained in:
commit
6ddcfabd59
1 changed files with 26 additions and 0 deletions
26
pkgs/by-name/cm/cmd-wrapped/package.nix
Normal file
26
pkgs/by-name/cm/cmd-wrapped/package.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "cmd-wrapped";
|
||||||
|
version = "0.1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "YiNNx";
|
||||||
|
repo = "cmd-wrapped";
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-9GyeJFU8wLl2kCnrwZ+j+PwCRS17NvzgSCpulhXHYqQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-i6LgLvLMDF696Tpn4yVA1XNuaTrABLVg3SgclHBq6Go=";
|
||||||
|
|
||||||
|
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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue