571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, substituteAll
|
|
, stdenv
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "lalrpop";
|
|
version = "0.20.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lalrpop";
|
|
repo = "lalrpop";
|
|
rev = version;
|
|
hash = "sha256-cFwBck+bdOjhF6rQQj03MOO+XCsrII5c4Xvhsw12ETA=";
|
|
};
|
|
|
|
cargoHash = "sha256-zkPLas+fQQzm7LlWNpTooUR/e30KMS9OET6PMwQ2yAA=";
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./use-correct-binary-path-in-tests.patch;
|
|
target_triple = stdenv.hostPlatform.rust.rustcTarget;
|
|
})
|
|
];
|
|
|
|
buildAndTestSubdir = "lalrpop";
|
|
|
|
# there are some tests in lalrpop-test and some in lalrpop
|
|
checkPhase = ''
|
|
buildAndTestSubdir=lalrpop-test cargoCheckHook
|
|
cargoCheckHook
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "LR(1) parser generator for Rust";
|
|
homepage = "https://github.com/lalrpop/lalrpop";
|
|
changelog = "https://github.com/lalrpop/lalrpop/blob/${src.rev}/RELEASES.md";
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
mainProgram = "lalrpop";
|
|
maintainers = with maintainers; [ chayleaf ];
|
|
};
|
|
}
|