nixpkgs/pkgs/development/compilers/passerine/default.nix
Kozova1 508adb0115
passerine: 0.9.2 → 0.9.3
* passerine: 0.9.2 → 0.9.3 (#147821)

Signed-off-by: Kozova1 <mug66kk@gmail.com>

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
2022-02-20 00:50:50 +01:00

23 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 ];
};
}