bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
23 lines
648 B
Nix
23 lines
648 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 = "Small extensible programming language designed for concise expression with little code";
|
|
mainProgram = "passerine";
|
|
homepage = "https://www.passerine.io/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ siraben ];
|
|
};
|
|
}
|