587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
23 lines
650 B
Nix
23 lines
650 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";
|
|
mainProgram = "passerine";
|
|
homepage = "https://www.passerine.io/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ siraben ];
|
|
};
|
|
}
|