···11+{ mkDerivation, base, containers, papa, stdenv, text }:
22+mkDerivation {
33+ pname = "AoC";
44+ version = "0.1.0.0";
55+ src = ./.;
66+ libraryHaskellDepends = [ base containers papa text ];
77+ license = stdenv.lib.licenses.bsd3;
88+}
+5
CHANGELOG.md
···11+# Revision history for AoC
22+33+## 0.1.0.0 -- YYYY-mm-dd
44+55+* First version. Released on an unsuspecting world.
+30
LICENSE
···11+Copyright (c) 2018, Kaushik Chakraborty
22+33+All rights reserved.
44+55+Redistribution and use in source and binary forms, with or without
66+modification, are permitted provided that the following conditions are met:
77+88+ * Redistributions of source code must retain the above copyright
99+ notice, this list of conditions and the following disclaimer.
1010+1111+ * Redistributions in binary form must reproduce the above
1212+ copyright notice, this list of conditions and the following
1313+ disclaimer in the documentation and/or other materials provided
1414+ with the distribution.
1515+1616+ * Neither the name of Kaushik Chakraborty nor the names of other
1717+ contributors may be used to endorse or promote products derived
1818+ from this software without specific prior written permission.
1919+2020+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2121+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2222+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2323+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2424+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2525+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2626+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2727+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2828+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2929+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3030+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+2
README.org
···11+#+TITLE: README
22+My [[https://adventofcode.com/][Advent of Code]] attempts