aboutsummaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/default.nix15
-rw-r--r--pkgs/docrstfmt/default.nix52
2 files changed, 0 insertions, 67 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
index 2cd621b..376a9d8 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -24,7 +24,6 @@ final: prev: {
dodo = final.callPackage ./dodo {};
elf-size-analyze = final.callPackage ./elf-size-analyze {};
- docstrfmt = final.callPackage ./docrstfmt {};
# OpenWrt One
armTrustedFirmwareMT7981 = final.callPackage ./mtk-arm-trusted-firmware rec {
@@ -75,20 +74,6 @@ final: prev: {
}).overrideAttrs (oldAttrs: {
nativeBuildInputs = [final.buildPackages.unixtools.xxd] ++ oldAttrs.nativeBuildInputs;
});
- linuxOpenWrtOne = final.buildLinux {
- version = "6.19.0-rc2";
- src = final.buildPackages.fetchgit {
- url = "git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git";
- rev = "b927546677c876e26eba308550207c2ddf812a43";
- hash = "sha256-Ti4No/FUoc2RgHxat908Uy0HnETlnyF/ZAJ4JmxD+jY=";
- };
- kernelPatches = [
- {
- name = "openwrt-one";
- patch = ./linux-openwrt-one-6_19.patch;
- }
- ];
- };
# RaspberryPi
ubootRaspberryPi3_btrfs = prev.buildUBoot {
diff --git a/pkgs/docrstfmt/default.nix b/pkgs/docrstfmt/default.nix
deleted file mode 100644
index 9d2761a..0000000
--- a/pkgs/docrstfmt/default.nix
+++ /dev/null
@@ -1,52 +0,0 @@
-{
- lib,
- python3,
- fetchFromGitHub,
-}:
-python3.pkgs.buildPythonApplication rec {
- pname = "docstrfmt";
- version = "2.0.1";
- pyproject = true;
-
- src = fetchFromGitHub {
- owner = "LilSpazJoekp";
- repo = "docstrfmt";
- tag = "v${version}";
- hash = "sha256-DoxRBRCHl/F7nvUiA4+c3DtxggzH9hHtHuoJsyPCA94=";
- };
-
- build-system = [
- python3.pkgs.flit-core
- ];
-
- dependencies = with python3.pkgs; [
- black
- click
- coverage
- docutils
- libcst
- platformdirs
- roman
- sphinx
- tabulate
- types-docutils
- ];
-
- nativeCheckInputs = with python3.pkgs; [
- pytestCheckHook
- pytest-aiohttp
- ];
-
- pythonImportsCheck = [
- "docstrfmt"
- ];
-
- meta = {
- description = "Formatter for reStructuredText";
- homepage = "https://github.com/LilSpazJoekp/docstrfmt";
- changelog = "https://github.com/LilSpazJoekp/docstrfmt/blob/${src.tag}/CHANGES.rst";
- license = lib.licenses.mit;
- maintainers = with lib.maintainers; [doronbehar];
- mainProgram = "docstrfmt";
- };
-}