rebuild shell.nix
This commit is contained in:
parent
15c2fe4316
commit
e8c441feed
1 changed files with 4 additions and 32 deletions
36
shell.nix
36
shell.nix
|
@ -1,35 +1,7 @@
|
|||
{ nixpkgs ? import <nixpkgs> {}, compiler ? "default", doBenchmark ? false }:
|
||||
{ pkgs ? import <nixpkgs> {}}:
|
||||
|
||||
let
|
||||
|
||||
inherit (nixpkgs) pkgs;
|
||||
|
||||
f = { mkDerivation, base, directory, filepath, hakyll, HTTP, lib
|
||||
, time
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "nek0-blog";
|
||||
version = "0.1.0.0";
|
||||
src = ./.;
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
executableHaskellDepends = [
|
||||
base directory filepath hakyll HTTP time
|
||||
];
|
||||
homepage = "https://nek0.eu";
|
||||
description = "My blog";
|
||||
license = "unknown";
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
};
|
||||
|
||||
haskellPackages = if compiler == "default"
|
||||
then pkgs.haskellPackages
|
||||
else pkgs.haskell.packages.${compiler};
|
||||
|
||||
variant = if doBenchmark then pkgs.haskell.lib.doBenchmark else pkgs.lib.id;
|
||||
|
||||
drv = variant (haskellPackages.callPackage f {});
|
||||
|
||||
blog = pkgs.haskellPackages.callCabal2nix "blog" (gitignore ./.) {};
|
||||
gitignore = dir: pkgs.nix-gitignore.gitignoreSource [] dir;
|
||||
in
|
||||
|
||||
if pkgs.lib.inNixShell then drv.env else drv
|
||||
blog.env
|
||||
|
|
Loading…
Reference in a new issue