From b4cc989874b7bc35e98458c66eaae7a50bc06867 Mon Sep 17 00:00:00 2001 From: TudbuT Date: Fri, 6 Sep 2024 23:30:29 +0200 Subject: [PATCH] spl: init at v0.3.2 https://git.tudbut.de/tudbut/spl - a scripting language --- pkgs/by-name/sp/spl/package.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pkgs/by-name/sp/spl/package.nix diff --git a/pkgs/by-name/sp/spl/package.nix b/pkgs/by-name/sp/spl/package.nix new file mode 100644 index 000000000000..60204b378ae4 --- /dev/null +++ b/pkgs/by-name/sp/spl/package.nix @@ -0,0 +1,24 @@ +{ + lib, + fetchgit, + rustPlatform, +}: +rustPlatform.buildRustPackage rec { + pname = "spl"; + version = "0.3.2"; + src = fetchgit { + url = "https://git.tudbut.de/tudbut/spl"; + rev = "v${version}"; + hash = "sha256-thTKM07EtgAVvjpIx8pVssTmN0jPK/OrPYhRfwp7T+U="; + }; + + cargoHash = "sha256-7MYwWA3F7uJewmBRR0iQD4iXJZokHqIt9Q9dMoj6JVs="; + + meta = { + description = "Simple, concise, concatenative scripting language"; + homepage = "https://git.tudbut.de/tudbut/spl"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ tudbut ]; + mainProgram = "spl"; + }; +}