advent-of-code-2023/haskell/default.nix

15 lines
376 B
Nix
Raw Normal View History

2023-12-01 08:19:49 +00:00
{ mkDerivation, base, lib }:
mkDerivation {
pname = "aoc2023";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base ];
executableHaskellDepends = [ base ];
homepage = "https://git.pub.solar/axeman/aoc2023";
description = "Advent of Code 2023";
license = lib.licenses.agpl3Plus;
mainProgram = "aoc2023";
}