792b51d22f
GitOrigin-RevId: d5f237872975e6fb6f76eef1368b5634ffcd266f
22 lines
619 B
Nix
22 lines
619 B
Nix
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "passerine";
|
|
version = "0.9.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vrtbl";
|
|
repo = "passerine";
|
|
rev = "v${version}";
|
|
hash = "sha256-TrbcULIJ9+DgQ4QsLYD5okxHoIusGJDw1PqJQwq1zu0=";
|
|
};
|
|
|
|
cargoHash = "sha256-A+sOT0rloAktDdVXe2HEPK25euh9T7c0rXybZmZpqC0=";
|
|
|
|
meta = with lib; {
|
|
description = "A small extensible programming language designed for concise expression with little code";
|
|
homepage = "https://www.passerine.io/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ siraben ];
|
|
};
|
|
}
|