nix flake update

This commit is contained in:
Grigory Shipunov 2022-09-27 01:16:19 +02:00
parent 22504fc7c5
commit e8ed378623
Signed by: 0xa
GPG key ID: 91FA5E5BF9AA901C
6 changed files with 70 additions and 32 deletions

21
pkgs/slick.nix Normal file
View 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;
};
}