Home

nur @main - refs - log -
-
https://git.jolheiser.com/nur.git
My NUR
tree log patch
chore: clean up unused files Signed-off-by: jolheiser <john.olheiser@gmail.com>
Signature
-----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEgqEQpE3xoo1QwJO/uFOtpdp7v3oFAmX7JOEACgkQuFOtpdp7 v3oeLhAAgbnXSTUdhepwswom94S9Sk8NEh7EtCJElN+p0S3FoY4fxAdI0v9+H3Hl T+2m0ZYKkWNdpSajyPi9BWIoYl7FLJHZmD65aZPbUkOvrGkSWIRAzMbzWPva5C5x UHs52O0K7IOX6aGUmEDuBvaqryFNLxXe/eF+rAAI/GWoImQHlmi1RJaUICU7Nqmm ZEk3xyeAugwz7oYJNJe9SQdXBYsEz6PzJk1sQXGwuvwsyty2ZbKRjgqdIS2qY8uI mk6K87iF+lHDmjcqbhJGbl98sa5el7EP74E7tATH2tCmpZf5+hSk6XRiemZ6yeHO 5Acd9xJ3qTX809zPewS5HyTpuBHXYpQXKZC2qT1DFl93jybyofm1bmKgCUaoW7uX v5eu0LVKKxDdURP2pTaHBUAFyO9AfnxYco5JYyz64gWVsqZhOJm8H8vrZx1U96D+ njZ8dsd8p7b1hFd7oNZMv+MPKgAZpOZIN5j5x1rTzYM8Hu90ot+aVo7wuXAXI570 +WdmmIawCrTwV9sRLwF0l66bsh5In3ZjmlPSFcdJBaKu11KmMr/V+NEn+JvkgVQZ IQ4p34VLl6f+ljq/dVOcmndCFWn0ncNFoz+QBmrMPW6WdtjIAiIOfZrGxcUL4/uw rKiaws6bilG5wi8h500cS2GGpmJ3XrgeGIcWWPC69cZq2YjS+tE= =utGn -----END PGP SIGNATURE-----
jolheiser <john.olheiser@gmail.com>
5 months ago
7 changed files, 0 additions(+), 166 deletions(-)
D .github/dependabot.yml
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
deleted file mode 100644
index 5ace4600a1f26e6892982f3e2f069ebfab108d87..0000000000000000000000000000000000000000
--- a/.github/dependabot.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-version: 2
-updates:
-  - package-ecosystem: "github-actions"
-    directory: "/"
-    schedule:
-      interval: "weekly"
D .github/workflows/build.yml
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
deleted file mode 100644
index 2cb9c381918ca6749e93e7d49aef071a4eb7c3da..0000000000000000000000000000000000000000
--- a/.github/workflows/build.yml
+++ /dev/null
@@ -1,75 +0,0 @@
-name: "Build and populate cache"
-on:
-  pull_request:
-  push:
-    branches:
-      - main
-      - master
-  schedule:
-    # rebuild everyday at 2:51
-    # TIP: Choose a random time here so not all repositories are build at once:
-    # https://www.random.org/clock-times/?num=1&earliest=01%3A00&latest=08%3A00&interval=5&format=html&rnd=new
-    - cron:  '51 2 * * *'
-jobs:
-  tests:
-    strategy:
-      matrix:
-        # Set this to notify the global nur package registry that changes are
-        # available.
-        #
-        # The repo name as used in
-        # https://github.com/nix-community/NUR/blob/master/repos.json
-        nurRepo:
-          - <YOUR_REPO_NAME>
-        # Set this to cache your build results in cachix for faster builds
-        # in CI and for everyone who uses your cache.
-        #
-        # Format: Your cachix cache host name without the ".cachix.org" suffix.
-        # Example: mycache (for mycache.cachix.org)
-        #
-        # For this to work, you also need to set the CACHIX_SIGNING_KEY or
-        # CACHIX_AUTH_TOKEN secret in your repository secrets settings in
-        # Github found at
-        # https://github.com/<your_githubname>/nur-packages/settings/secrets
-        cachixName:
-          - <YOUR_CACHIX_NAME>
-        nixPath:
-          - nixpkgs=channel:nixos-unstable
-          - nixpkgs=channel:nixpkgs-unstable
-          - nixpkgs=channel:nixos-23.05
-    runs-on: ubuntu-latest
-    steps:
-    - name: Checkout repository
-      uses: actions/checkout@v3
-    - name: Install nix
-      uses: cachix/install-nix-action@v22
-      with:
-        nix_path: "${{ matrix.nixPath }}"
-        extra_nix_config: |
-          experimental-features = nix-command flakes
-          access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
-    - name: Show nixpkgs version
-      run: nix-instantiate --eval -E '(import <nixpkgs> {}).lib.version'
-    - name: Setup cachix
-      uses: cachix/cachix-action@v12
-      # Don't replace <YOUR_CACHIX_NAME> here!
-      if: ${{ matrix.cachixName != '<YOUR_CACHIX_NAME>' }}
-      with:
-        name: ${{ matrix.cachixName }}
-        signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
-        authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
-    - name: Check evaluation
-      run: |
-        nix-env -f . -qa \* --meta --xml \
-          --allowed-uris https://static.rust-lang.org \
-          --option restrict-eval true \
-          --option allow-import-from-derivation true \
-          --drv-path --show-trace \
-          -I nixpkgs=$(nix-instantiate --find-file nixpkgs) \
-          -I $PWD
-    - name: Build nix packages
-      run: nix shell -f '<nixpkgs>' nix-build-uncached -c nix-build-uncached ci.nix -A cacheOutputs
-    - name: Trigger NUR update
-      # Don't replace <YOUR_REPO_NAME> here!
-      if: ${{ matrix.nurRepo != '<YOUR_REPO_NAME>' }}
-      run: curl -XPOST "https://nur-update.nix-community.org/update?repo=${{ matrix.nurRepo }}"
D ci.nix
diff --git a/ci.nix b/ci.nix
deleted file mode 100644
index 22b1352761a22be6fb657c15eaa917f446d4394e..0000000000000000000000000000000000000000
--- a/ci.nix
+++ /dev/null
@@ -1,53 +0,0 @@
-# This file provides all the buildable and cacheable packages and
-# package outputs in your package set. These are what gets built by CI,
-# so if you correctly mark packages as
-#
-# - broken (using `meta.broken`),
-# - unfree (using `meta.license.free`), and
-# - locally built (using `preferLocalBuild`)
-#
-# then your CI will be able to build and cache only those packages for
-# which this is possible.
-
-{ pkgs ? import <nixpkgs> { } }:
-
-with builtins;
-let
-  isReserved = n: n == "lib" || n == "overlays" || n == "modules";
-  isDerivation = p: isAttrs p && p ? type && p.type == "derivation";
-  isBuildable = p: !(p.meta.broken or false) && p.meta.license.free or true;
-  isCacheable = p: !(p.preferLocalBuild or false);
-  shouldRecurseForDerivations = p: isAttrs p && p.recurseForDerivations or false;
-
-  nameValuePair = n: v: { name = n; value = v; };
-
-  concatMap = builtins.concatMap or (f: xs: concatLists (map f xs));
-
-  flattenPkgs = s:
-    let
-      f = p:
-        if shouldRecurseForDerivations p then flattenPkgs p
-        else if isDerivation p then [ p ]
-        else [ ];
-    in
-    concatMap f (attrValues s);
-
-  outputsOf = p: map (o: p.${o}) p.outputs;
-
-  nurAttrs = import ./default.nix { inherit pkgs; };
-
-  nurPkgs =
-    flattenPkgs
-      (listToAttrs
-        (map (n: nameValuePair n nurAttrs.${n})
-          (filter (n: !isReserved n)
-            (attrNames nurAttrs))));
-
-in
-rec {
-  buildPkgs = filter isBuildable nurPkgs;
-  cachePkgs = filter isCacheable buildPkgs;
-
-  buildOutputs = concatMap outputsOf buildPkgs;
-  cacheOutputs = concatMap outputsOf cachePkgs;
-}
D lib/default.nix
diff --git a/lib/default.nix b/lib/default.nix
deleted file mode 100644
index a7fab1d2be536ab904a73a62194297419e60fdb4..0000000000000000000000000000000000000000
--- a/lib/default.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{ pkgs }:
-
-with pkgs.lib; {
-  # Add your library functions here
-  #
-  # hexint = x: hexvals.${toLower x};
-}
D modules/default.nix
diff --git a/modules/default.nix b/modules/default.nix
deleted file mode 100644
index ff6c7c0c429f0a38db757dd4f19e910dd5783deb..0000000000000000000000000000000000000000
--- a/modules/default.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  # Add your NixOS modules here
-  #
-  # my-module = ./my-module;
-}
D overlay.nix
diff --git a/overlay.nix b/overlay.nix
deleted file mode 100644
index bff7396a70d9bb78a88226f72f467f073eb18ef3..0000000000000000000000000000000000000000
--- a/overlay.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-# You can use this file as a nixpkgs overlay. This is useful in the
-# case where you don't want to add the whole NUR namespace to your
-# configuration.
-
-self: super:
-let
-  isReserved = n: n == "lib" || n == "overlays" || n == "modules";
-  nameValuePair = n: v: { name = n; value = v; };
-  nurAttrs = import ./default.nix { pkgs = super; };
-
-in
-builtins.listToAttrs
-  (map (n: nameValuePair n nurAttrs.${n})
-    (builtins.filter (n: !isReserved n)
-      (builtins.attrNames nurAttrs)))
D overlays/default.nix
diff --git a/overlays/default.nix b/overlays/default.nix
deleted file mode 100644
index 0c2d870dddf36697ed50cda0acee515a8e9b994f..0000000000000000000000000000000000000000
--- a/overlays/default.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  # Add your overlays here
-  #
-  # my-overlay = import ./my-overlay;
-}