lied about it building purely
This commit is contained in:
parent
fcb0453ee8
commit
dbc40668f5
@ -14,6 +14,10 @@ Nix can be installed with:
|
||||
curl https://nixos.org/nix/install | sh
|
||||
```
|
||||
|
||||
### Dependencies
|
||||
|
||||
`imagemagick` is required for the favicons.
|
||||
|
||||
### Installing
|
||||
|
||||
Enter the build environment
|
||||
|
@ -1,4 +1,6 @@
|
||||
{ mkDerivation, base, filepath, hakyll, hakyll-favicon, stdenv }:
|
||||
{ mkDerivation, base, filepath, hakyll, hakyll-favicon, imagemagick
|
||||
, stdenv
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "rf";
|
||||
version = "0.1.2.0";
|
||||
@ -6,6 +8,7 @@ mkDerivation {
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
executableHaskellDepends = [ base filepath hakyll hakyll-favicon ];
|
||||
executableSystemDepends = [ imagemagick ];
|
||||
homepage = "regularflolloping.com";
|
||||
description = "tA's blog";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
Loading…
Reference in New Issue
Block a user