summary refs log tree commit diff
path: root/ripple/nix/default.nix
blob: d4edeefbd273acbfcbdd9789a6d643c505218054 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# SPDX-FileCopyrightText: V <v@unfathomable.blue>
# SPDX-License-Identifier: OSL-3.0

let sources = import ./sources.nix {};
in import sources.nixpkgs {
  overlays = [
    (final: prev: {
      # This was not available in nixpkgs at the time of writing.
      naersk = final.callPackage sources.naersk {};
    })
  ];
}