Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixos-weekly
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 585a6d4ad3bc
Choose a base ref
...
head repository: NixOS/nixos-weekly
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6dbe65be41b2
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Feb 21, 2019

  1. lint links

    domenkozar committed Feb 21, 2019

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    6dbe65b View commit details
Showing with 7 additions and 2 deletions.
  1. +1 −0 .travis.yml
  2. +4 −0 lint.sh
  3. +2 −2 nixpkgs.nix
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -2,4 +2,5 @@ language: nix

script:
- nix-build -Q default.nix;
- ./lint.sh

4 changes: 4 additions & 0 deletions lint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
BIN=$(nix-build nixpkgs.nix -A nodePackages_10_x.markdown-link-check)/bin/markdown-link-check

find content/2019 -type f -exec $BIN {} \;

4 changes: 2 additions & 2 deletions nixpkgs.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# to update: $ nix-prefetch-url --unpack url
import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/39e3248141eb2f778ef5adc7643eb36094416974.tar.gz";
sha256 = "17l5fjpkhsr70z6p43k9b1g7flxkvcv3azwqqjsc666s44sgiw9j";
url = "https://github.com/NixOS/nixpkgs/archive/54568a7cafb8538220fa04b93e9a038a314b65df.tar.gz";
sha256 = "0sdhizxcp7vzsipbffx3npns23lfgdhxwkiawmi3msl50dxmc8p1";
}) { config = {}; overlays = []; }