fixed nix config

This commit is contained in:
flupe 2021-03-17 21:32:43 +01:00
parent ae24be9497
commit 8cc74f21d9
2 changed files with 35 additions and 0 deletions

16
release.nix Normal file
View File

@ -0,0 +1,16 @@
let
compiler = "ghc884";
rev = "b78e08e981a9ad31036fc6c6fb880c1315b4ebea";
overlay = _: pkgs: {
haskellPackages = pkgs.haskellPackages.override {
overrides = self: super: rec {
achille = self.callPackage ../achille/achille.nix {};
};
};
};
nixpkgs =
import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz";
}) { overlays = [ overlay ] ; };
in nixpkgs.haskellPackages.callPackage ./site.nix {}

19
site.nix Normal file
View File

@ -0,0 +1,19 @@
{ mkDerivation, achille, aeson, base, binary, bytestring
, containers, data-default, directory, feed, filepath, lucid
, optparse-applicative, pandoc, pandoc-types, process, sort, stdenv
, text, time, yaml
}:
mkDerivation {
pname = "site";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
achille aeson base binary bytestring containers data-default
directory feed filepath lucid optparse-applicative pandoc
pandoc-types process sort text time yaml
];
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
}