chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / sp / spl / package.nix
blobc3e517d862919f4e53700ce4ed09136ada28d9c0
2   lib,
3   fetchgit,
4   rustPlatform,
5 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "spl";
8   version = "0.4.0";
9   src = fetchgit {
10     url = "https://git.tudbut.de/tudbut/spl";
11     rev = "v${version}";
12     hash = "sha256-/WjrQeE3zI71pvCil2yE9ZMaWkmyRG/tNmZ+XFF0nYw=";
13   };
15   cargoHash = "sha256-8xv7tXVklJDewnHqoRIMefsNWTD28+5WyV5ZI9imOh0=";
17   meta = {
18     description = "Simple, concise, concatenative scripting language";
19     homepage = "https://git.tudbut.de/tudbut/spl";
20     license = lib.licenses.mit;
21     maintainers = with lib.maintainers; [ tudbut ];
22     mainProgram = "spl";
23   };