dhall-haskell/dhall-nix/nix/dhall-nix.nix
Gabriel Gonzalez 41e74ee9da Pin nixpkgs
2018-05-01 08:45:39 -07:00

21 lines
588 B
Nix

{ mkDerivation, base, containers, data-fix, dhall, formatting, hnix
, insert-ordered-containers, neat-interpolation, optparse-generic
, scientific, stdenv, text
}:
mkDerivation {
pname = "dhall-nix";
version = "1.1.3";
src = ./..;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base containers data-fix dhall formatting hnix
insert-ordered-containers neat-interpolation scientific text
];
executableHaskellDepends = [
base dhall hnix optparse-generic text
];
description = "Dhall to Nix compiler";
license = stdenv.lib.licenses.bsd3;
}