chris-website/mijnblog.nix

17 lines
402 B
Nix
Raw Permalink Normal View History

2020-06-24 08:08:28 +00:00
{pkgs}:
with (import ./mkDub.nix {
inherit pkgs;
});
mkDubDerivation {
src = ./.;
dubJSON = ./dub.json;
selections = ./dub.selections.nix;
2023-12-08 21:57:15 +00:00
version = "0.0.3";
2020-06-24 08:08:28 +00:00
buildInputs = [ pkgs.openssl ];
propagatedBuildInputs = [ pkgs.nix-prefetch-git ];
2022-09-15 18:29:06 +00:00
extraDubFlags = "--override-config openssl/library-manual-version";
preBuild = ''
export DC=${pkgs.dmd}/bin/dmd
'';
2020-06-24 08:08:28 +00:00
}