texlab-patched
All checks were successful
CI / Build Packages (default) (push) Successful in 52s
CI / Build Packages (example-a) (push) Successful in 49s
CI / Nix Flake Check (push) Successful in 1m58s
CI / Build Packages (example-b) (push) Successful in 48s
CI / Build Packages (pyzotero) (push) Successful in 53s
CI / Build Packages (pyzotero-cli) (push) Successful in 56s
All checks were successful
CI / Build Packages (default) (push) Successful in 52s
CI / Build Packages (example-a) (push) Successful in 49s
CI / Nix Flake Check (push) Successful in 1m58s
CI / Build Packages (example-b) (push) Successful in 48s
CI / Build Packages (pyzotero) (push) Successful in 53s
CI / Build Packages (pyzotero-cli) (push) Successful in 56s
This commit is contained in:
24
pkgs/texlab/default.nix
Normal file
24
pkgs/texlab/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
pkg-config,
|
||||
openssl,
|
||||
texlab-src,
|
||||
}:
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "texlab";
|
||||
version = "5.25.1-patched";
|
||||
src = texlab-src;
|
||||
cargoLock.lockFile = "${texlab-src}/Cargo.lock";
|
||||
patches = [ ./patches/subfile-diagnostics.patch ];
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
meta = {
|
||||
description = "Texlab with subfile diagnostic fix";
|
||||
mainProgram = "texlab";
|
||||
license = lib.licenses.mit;
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user