sigil/release.nix
Emery Hemingway cede594e15 Add dhall-haskell submodule
We need the latest version of the Dhall interpreter, but that needs
a pin to Nixpkgs release-17.09. Use submodule rather than a fetchgit
because dhall-haskell requires a submodule itself, and fetgit does
not pull this in.
2019-10-05 20:41:02 +02:00

17 lines
442 B
Nix

# SPDX-FileCopyrightText: Emery Hemingway
#
# SPDX-License-Identifier: LicenseRef-Hippocratic-1.1
{ genodepkgs ? builtins.fetchGit ./., nixpkgs ? <nixpkgs>
, dhall-haskell ? ./dhall-haskell.nix }:
let pkgs = import ./default.nix { inherit nixpkgs; };
in {
build.x86_64 = {
inherit (pkgs) nova stdenv;
genode = removeAttrs pkgs.genode [ "override" "overrideDerivation" ];
};
tests.x86_64 = import ./tests { inherit pkgs; };
}