chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / po / polarity / package.nix
blob7ae41d90317d7f73ec73a50887a77c47513502ca
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "polarity";
8   version = "0-unstable-2024-06-28";
10   src = fetchFromGitHub {
11     owner = "polarity-lang";
12     repo = "polarity";
13     rev = "59bd7a2c3c3d0a61b25d3bb85b9d21f7b3fef343";
14     hash = "sha256-85uo2GAGxWAWwN2vyhUqwz28Ofb+2eOSuetzovAle+A=";
15   };
17   cargoLock = {
18     lockFile = ./Cargo.lock;
19     outputHashes = { "codespan-0.11.1" = "sha256-Wq99v77bqSGIOK/iyv+x/EG1563XSeaTDW5K2X3kSXU="; };
20   };
22   meta = {
23     description = "A Language with Dependent Data and Codata Types";
24     homepage = "https://polarity-lang.github.io/";
25     changelog = "https://github.com/polarity-lang/polarity/blob/${src.rev}/CHANGELOG.md";
26     license = with lib.licenses; [ mit asl20 ];
27     maintainers = [ lib.maintainers.mangoiv ];
28     mainProgram = "pol";
29     platforms = lib.platforms.all;
30   };