nix flake update
This commit is contained in:
parent
22504fc7c5
commit
e8ed378623
6 changed files with 70 additions and 32 deletions
21
pkgs/slick.nix
Normal file
21
pkgs/slick.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ lib, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "slick";
|
||||
version = "0.10.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nbari";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "033ecd2696bfd59fd959eb95f66875a45e5aec54";
|
||||
};
|
||||
|
||||
cargoSha256 = lib.fakeSha256;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Async ZSH prompt";
|
||||
homepage = "https://github.com/nbari/slick";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue