Unverified Commit 483bc081 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

paco: remove (#403046)

parents ec518489 08c3edb1
Loading
Loading
Loading
Loading

pkgs/by-name/pa/paco/package.nix

deleted100644 → 0
+0 −43
Original line number Diff line number Diff line
{
  lib,
  buildGoModule,
  fetchFromGitHub,
  fetchpatch,
}:

buildGoModule rec {
  pname = "paco";
  version = "1.0";

  src = fetchFromGitHub {
    owner = "pacolang";
    repo = "paco";
    rev = "v${version}";
    hash = "sha256-sCU7cjmsUTrhf/7Lm3wBPKwk80SAhCfc4lrCBggspw8=";
  };

  vendorHash = "sha256-J0TKp1df5IWq3Irlzf1lvhWlXnP//MsVqs9M8TtEraw=";

  patches = [
    # Set correct package path in go.mod
    (fetchpatch {
      url = "https://github.com/pacolang/paco/pull/1/commits/886f0407e94418d34c7e062c6857834aea3c99ac.patch";
      hash = "sha256-HRNJSyWz1OY+kCV+eaRJbaDXkH4n1NaMpFxCuEhocK4=";
    })
  ];

  subPackages = [ "." ];

  ldflags = [
    "-s"
    "-w"
  ];

  meta = with lib; {
    description = "Simple compiled programming language";
    mainProgram = "paco";
    homepage = "https://github.com/pacolang/paco";
    license = licenses.mit;
    maintainers = with maintainers; [ hugolgst ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -1397,6 +1397,7 @@ mapAliases {
  passky-desktop = throw "passky-desktop has been removed, as it was unmaintained and blocking the Electron 29 removal."; # Added 2025-02-24
  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
  paco = throw "'paco' has been removed as it has been abandoned"; # Added 2025-04-30
  inherit (perlPackages) pacup;
  panopticon = throw "'panopticon' has been removed because it is unmaintained upstream"; # Added 2025-01-25
  paperoni = throw "paperoni has been removed, because it is unmaintained"; # Added 2024-07-14