Do the template
This commit is contained in:
parent
9dfc055a77
commit
5e0c630b44
3 changed files with 6 additions and 5 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -9,7 +9,7 @@ on:
|
|||
# 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 * * *'
|
||||
- cron: '20 3 * * *'
|
||||
jobs:
|
||||
tests:
|
||||
strategy:
|
||||
|
@ -20,7 +20,7 @@ jobs:
|
|||
# The repo name as used in
|
||||
# https://github.com/nix-community/NUR/blob/master/repos.json
|
||||
nurRepo:
|
||||
- <YOUR_REPO_NAME>
|
||||
- samfishe
|
||||
# Set this to cache your build results in cachix for faster builds
|
||||
# in CI and for everyone who uses your cache.
|
||||
#
|
||||
|
@ -32,7 +32,7 @@ jobs:
|
|||
# Github found at
|
||||
# https://github.com/<your_githubname>/nur-packages/settings/secrets
|
||||
cachixName:
|
||||
- <YOUR_CACHIX_NAME>
|
||||
- samtherapy
|
||||
nixPath:
|
||||
- nixpkgs=channel:nixos-unstable
|
||||
- nixpkgs=channel:nixpkgs-unstable
|
||||
|
|
|
@ -26,12 +26,12 @@
|
|||
**My personal [NUR](https://github.com/nix-community/NUR) repository**
|
||||
|
||||
<!-- Remove this if you don't use github actions -->
|
||||
![Build and populate cache](https://github.com/<YOUR-GITHUB-USER>/nur-packages/workflows/Build%20and%20populate%20cache/badge.svg)
|
||||
![Build and populate cache](https://github.com/SamTherapy/nur-packages/workflows/Build%20and%20populate%20cache/badge.svg)
|
||||
|
||||
<!--
|
||||
Uncomment this if you use travis:
|
||||
|
||||
[![Build Status](https://travis-ci.com/<YOUR_TRAVIS_USERNAME>/nur-packages.svg?branch=master)](https://travis-ci.com/<YOUR_TRAVIS_USERNAME>/nur-packages)
|
||||
-->
|
||||
[![Cachix Cache](https://img.shields.io/badge/cachix-<YOUR_CACHIX_CACHE_NAME>-blue.svg)](https://<YOUR_CACHIX_CACHE_NAME>.cachix.org)
|
||||
[![Cachix Cache](https://img.shields.io/badge/cachix-samtherapy-blue.svg)](https://samtherapy.cachix.org)
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
overlays = import ./overlays; # nixpkgs overlays
|
||||
|
||||
example-package = pkgs.callPackage ./pkgs/example-package { };
|
||||
awl-dns = pkgs.callPackage ./pkgs/awl {};
|
||||
# some-qt5-package = pkgs.libsForQt5.callPackage ./pkgs/some-qt5-package { };
|
||||
# ...
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue