mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
pax-rs: remove
Author's GitHub profile is now private. According to the Wayback Machine upstream repo has been gone since at least September 2020.
This commit is contained in:
parent
2bd0a0f92f
commit
cbf92309a9
2 changed files with 1 additions and 46 deletions
|
@ -1,46 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
fetchurl,
|
||||
rustPlatform,
|
||||
runCommand,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "pax-rs";
|
||||
version = "0.4.0";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fastest JavaScript bundler in the galaxy";
|
||||
longDescription = ''
|
||||
The fastest JavaScript bundler in the galaxy. Fully supports ECMAScript module syntax (import/export) in addition to CommonJS require(<string>).
|
||||
'';
|
||||
homepage = "https://github.com/nathan/pax";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.klntsky ];
|
||||
platforms = platforms.linux;
|
||||
mainProgram = "px";
|
||||
};
|
||||
|
||||
src =
|
||||
let
|
||||
source = fetchFromGitHub {
|
||||
owner = "nathan";
|
||||
repo = "pax";
|
||||
rev = "pax-v${version}";
|
||||
sha256 = "1l2xpgsms0bfc0i3l0hyw4dbp6d4qdxa9vxyp704p27vvn4ndhv2";
|
||||
};
|
||||
|
||||
cargo-lock = fetchurl {
|
||||
url = "https://gist.github.com/klntsky/c7863424d7df0c379782015f6bb3b399/raw/1cf7481e33984fd1510dc77ed677606d08fa8eb6/Cargo.lock";
|
||||
sha256 = "0ff1b64b99cbca1cc2ceabcd2e4f7bc3411e3a2a9fbb9db2204d9240fe38ddeb";
|
||||
};
|
||||
in
|
||||
runCommand "pax-rs-src" { } ''
|
||||
cp -R ${source} $out
|
||||
chmod +w $out
|
||||
cp ${cargo-lock} $out/Cargo.lock
|
||||
'';
|
||||
|
||||
cargoHash = "sha256-2gXd1rwj82Ywin4QW3g9cB9R0PkXhE73F9xSJ6EozzQ=";
|
||||
}
|
|
@ -1044,6 +1044,7 @@ mapAliases {
|
|||
|
||||
### P ###
|
||||
|
||||
pax-rs = throw "'pax-rs' has been removed because upstream has disappeared"; # Added 2025-01-25
|
||||
PageEdit = pageedit; # Added 2024-01-21
|
||||
p2pvc = throw "p2pvc has been removed as it is unmaintained upstream and depends on OpenCV 2"; # Added 2024-08-20
|
||||
packet-cli = throw "'packet-cli' has been renamed to/replaced by 'metal-cli'"; # Converted to throw 2024-10-17
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue