Unverified Commit 9fea0529 authored by Fernando Rodrigues's avatar Fernando Rodrigues
Browse files

ISSUE_TEMPLATES: remove the package request template

parent 0d7bccf4
Loading
Loading
Loading
Loading
+0 −108
Original line number Diff line number Diff line
name: "Request: new package"
description: "Create a package request for software that is not yet included in Nixpkgs."
title: "Package request: PACKAGENAME"
labels: ["0.kind: enhancement", "0.kind: packaging request", "9.needs: package (new)"]
body:
  - type: "markdown"
    attributes:
      value: |
        <p align="center">
          <a href="https://nixos.org">
            <picture>
              <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/NixOS/nixos-homepage/main/public/logo/nixos-hires.png">
              <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/NixOS/nixos-artwork/master/logo/nixos-white.png">
              <img src="https://raw.githubusercontent.com/NixOS/nixos-homepage/main/public/logo/nixos-hires.png" width="400px" alt="NixOS logo">
            </picture>
          </a>
        </p>

        Welcome to Nixpkgs. Please replace the **`Package request: PACKAGENAME`** template above with the correct package name (As seen in the [NixOS Package Search](https://search.nixos.org/packages)).

        > [!TIP]
        > For instance, if you were filing a request against the missing `hello` package, your title would be as follows:
        > `Package request: hello`

        ---
  - type: "textarea"
    id: "description"
    attributes:
      label: "Describe the package"
      description: "Please include a clear and concise description of what the package is."
    validations:
      required: true
  - type: "input"
    id: "homepage"
    attributes:
      label: "Upstream homepage"
      description: "Please copy and paste a link to the package's homepage."
    validations:
      required: true
  - type: "input"
    id: "source"
    attributes:
      label: "Source URL"
      description: "Please copy and paste a link to the package's source code or binary download page."
    validations:
      required: true
  - type: "input"
    id: "license"
    attributes:
      label: "License"
      description: "Please indicate the package's license. If the package has no license, or the source code is not public, please indicate the package is `unfree`."
    validations:
      required: true
  - type: "dropdown"
    id: "platforms"
    attributes:
      label: "Platforms"
      description: "Please indicate the platforms this package compiles for. `darwin` refers to macOS. `Exotic` refers to uncommon platforms like RISC-V or 32-bit ARM; please mention in the 'Additional Context' section below if this package is supposed to compile for such exotic platforms."
      multiple: true
      options:
        - "x86_64-linux"
        - "aarch64-linux"
        - "x86_64-darwin"
        - "aarch64-darwin"
        - "Exotic"
  - type: "textarea"
    id: "additional-context"
    attributes:
      label: "Additional context"
      description: "Add any other context about the proposed module here."
    validations:
      required: false
  - type: "checkboxes"
    id: "sanity-check"
    attributes:
      label: "I assert that this issue is relevant for Nixpkgs"
      options:
        - label: "I assert that this package does not yet exist in an [open pull request](https://github.com/NixOS/nixpkgs/pulls?q=is%3Aopen+is%3Apr+label%3A%228.has%3A+package+%28new%29%22) or in [Nixpkgs Unstable](https://search.nixos.org/packages?channel=unstable)."
          required: true
        - label: "I assert that this is not a [duplicate of any known issue](https://github.com/NixOS/nixpkgs/issues?q=is%3Aissue+is%3Aopen+label%3A%220.kind%3A+packaging+request%22)."
          required: true
        - label: "I assert that I have read the [NixOS Code of Conduct](https://github.com/NixOS/.github/blob/master/CODE_OF_CONDUCT.md) and agree to abide by it."
          required: true
  - type: "markdown"
    attributes:
      value: |
        # Thank you for helping improve Nixpkgs!

        ---
  - type: "textarea"
    id: "prioritisation"
    attributes:
      label: "For this package's maintainers:"
      description: |
        **Please do not modify this text area!**

        This template helps Nixpkgs developers know which issues should be prioritised by allowing users to vote with a :+1: reaction and also reminds them to tag this issue in their pull requests.
        This is not a guarantee that highly-requested issues will be fixed first, but it helps us to figure out what's important to users. Please react on other users' issues if you find them important.
      value: |

        Please tag this issue in your pull request description. (i.e. `Resolves #ISSUE`.)

        ---

        Add a :+1: [reaction] to [issues you find important].

        [reaction]: https://github.blog/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/
        [issues you find important]: https://github.com/NixOS/nixpkgs/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc
Loading