Skip to content

Commit

Permalink
pista: init at unstable-2021-12-15
Browse files Browse the repository at this point in the history
a simple {bash, zsh} prompt for programmers
  • Loading branch information
benjajaja committed Aug 24, 2024
1 parent 9784d3d commit e15279a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/by-name/pi/pista/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ lib, fetchFromGitHub, rustPlatform }:

rustPlatform.buildRustPackage rec {
pname = "pista";
version = "378535f3e7e138110b6225616e0dc61066a5605a";

src = fetchFromGitHub {
owner = "oppiliappan";
repo = pname;
rev = version;
sha256 = "sha256-FlWDKz5B/sC+VCtJNmtCJTkxzeOJOMT9gZlG6UVGzKU=";
fetchSubmodules = true;
};

cargoHash = "sha256-/jjXwczzXHcK7gSkyjcxUo11S46yzDAWOHpxL7+mR1A=";

meta = with lib; {
description = "a simple {bash, zsh} prompt for programmers";
homepage = "https://github.com/oppiliappan/pista";
license = licenses.mit;
maintainers = with maintainers; [ benjajaja ];
};
}

0 comments on commit e15279a

Please sign in to comment.