aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--default.nix9
-rw-r--r--servant/LICENSE27
-rw-r--r--servant/Setup.hs2
-rw-r--r--servant/servant.cabal26
-rw-r--r--servant/servant.nix19
-rw-r--r--servant/src/Main.hs2
-rw-r--r--shell.nix14
-rw-r--r--thermoprint/LICENSE27
-rw-r--r--thermoprint/Setup.hs2
-rw-r--r--thermoprint/src/Thermoprint.hs3
-rw-r--r--thermoprint/thermoprint.cabal70
-rw-r--r--thermoprint/thermoprint.nix18
13 files changed, 220 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c4a847d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
/result
diff --git a/default.nix b/default.nix
new file mode 100644
index 0000000..65ea673
--- /dev/null
+++ b/default.nix
@@ -0,0 +1,9 @@
1{ pkgs ? (import <nixpkgs> {})
2}:
3
4rec {
5 # servant = pkgs.haskellPackages.callPackage ./servant/servant.nix {
6 # inherit thermoprint;
7 # };
8 thermoprint = pkgs.haskellPackages.callPackage ./thermoprint/thermoprint.nix {};
9}
diff --git a/servant/LICENSE b/servant/LICENSE
new file mode 100644
index 0000000..4ad71e2
--- /dev/null
+++ b/servant/LICENSE
@@ -0,0 +1,27 @@
1Statement of Purpose
2
3The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work").
4
5Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.
6
7For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.
8
91. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following:
10
11the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;
12moral rights retained by the original author(s) and/or performer(s);
13publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;
14rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;
15rights protecting the extraction, dissemination, use and reuse of data in a Work;
16database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and
17other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.
182. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.
19
203. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.
21
224. Limitations and Disclaimers.
23
24No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.
25Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.
26Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.
27Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. \ No newline at end of file
diff --git a/servant/Setup.hs b/servant/Setup.hs
new file mode 100644
index 0000000..9a994af
--- /dev/null
+++ b/servant/Setup.hs
@@ -0,0 +1,2 @@
1import Distribution.Simple
2main = defaultMain
diff --git a/servant/servant.cabal b/servant/servant.cabal
new file mode 100644
index 0000000..b509dbc
--- /dev/null
+++ b/servant/servant.cabal
@@ -0,0 +1,26 @@
1-- Initial thermoprint.cabal generated by cabal init. For further
2-- documentation, see http://haskell.org/cabal/users-guide/
3
4name: thermoprint-servant
5version: 0.0.0
6synopsis: Server for interfacing to cheap thermoprinters
7-- description:
8homepage: git://git.yggdrasil.li/thermoprint
9license: PublicDomain
10license-file: LICENSE
11author: Gregor Kleen
12maintainer: aethoago@141.li
13-- copyright:
14category: Web
15build-type: Simple
16-- extra-source-files:
17cabal-version: >=1.10
18
19executable thermoprint
20 main-is: Main.hs
21 -- other-modules:
22 -- other-extensions:
23 build-depends: base >=4.8 && <4.9
24 , thermoprint
25 hs-source-dirs: src
26 default-language: Haskell2010 \ No newline at end of file
diff --git a/servant/servant.nix b/servant/servant.nix
new file mode 100644
index 0000000..6c90a4f
--- /dev/null
+++ b/servant/servant.nix
@@ -0,0 +1,19 @@
1{ mkDerivation
2, stdenv
3, base
4, thermoprint
5}:
6
7mkDerivation {
8 pname = "thermoprint-servant";
9 version = "0.0.0";
10 src = ./.;
11 isLibrary = false;
12 isExecutable = true;
13 executableHaskellDepends = [
14 base thermoprint
15 ];
16 homepage = "git://git.yggdrasil.li/thermoprint";
17 description = "Server for interfacing to cheap thermoprinters";
18 license = stdenv.lib.licenses.publicDomain;
19}
diff --git a/servant/src/Main.hs b/servant/src/Main.hs
new file mode 100644
index 0000000..e9e1deb
--- /dev/null
+++ b/servant/src/Main.hs
@@ -0,0 +1,2 @@
1main :: IO ()
2main = undefined
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..df3ed18
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,14 @@
1{ pkgs ? (import <nixpkgs> {})
2, compiler ? "ghc7102"
3}:
4
5let
6 ghc = pkgs.haskell.packages.${compiler}.ghcWithPackages (ps: with ps; [
7 cabal-install hlint cabal2nix
8 ] ++ (builtins.attrValues (import ./default.nix {})));
9in
10pkgs.stdenv.mkDerivation {
11 name = "thermoprinter-env";
12 buildInputs = [ ghc ];
13 shellHook = "eval $(egrep ^export ${ghc}/bin/ghc)";
14}
diff --git a/thermoprint/LICENSE b/thermoprint/LICENSE
new file mode 100644
index 0000000..4ad71e2
--- /dev/null
+++ b/thermoprint/LICENSE
@@ -0,0 +1,27 @@
1Statement of Purpose
2
3The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work").
4
5Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.
6
7For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.
8
91. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following:
10
11the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;
12moral rights retained by the original author(s) and/or performer(s);
13publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;
14rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;
15rights protecting the extraction, dissemination, use and reuse of data in a Work;
16database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and
17other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.
182. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.
19
203. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.
21
224. Limitations and Disclaimers.
23
24No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.
25Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.
26Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.
27Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. \ No newline at end of file
diff --git a/thermoprint/Setup.hs b/thermoprint/Setup.hs
new file mode 100644
index 0000000..9a994af
--- /dev/null
+++ b/thermoprint/Setup.hs
@@ -0,0 +1,2 @@
1import Distribution.Simple
2main = defaultMain
diff --git a/thermoprint/src/Thermoprint.hs b/thermoprint/src/Thermoprint.hs
new file mode 100644
index 0000000..c8c4c47
--- /dev/null
+++ b/thermoprint/src/Thermoprint.hs
@@ -0,0 +1,3 @@
1module Thermoprint
2 (
3 ) where
diff --git a/thermoprint/thermoprint.cabal b/thermoprint/thermoprint.cabal
new file mode 100644
index 0000000..6c8a395
--- /dev/null
+++ b/thermoprint/thermoprint.cabal
@@ -0,0 +1,70 @@
1-- Initial thermoprint.cabal generated by cabal init. For further
2-- documentation, see http://haskell.org/cabal/users-guide/
3
4-- The name of the package.
5name: thermoprint
6
7-- The package version. See the Haskell package versioning policy (PVP)
8-- for standards guiding when and how versions should be incremented.
9-- http://www.haskell.org/haskellwiki/Package_versioning_policy
10-- PVP summary: +-+------- breaking API changes
11-- | | +----- non-breaking API additions
12-- | | | +--- code changes with no API change
13version: 0.0.0
14
15-- A short (one-line) description of the package.
16synopsis: Description of formatting supported by cheap thermoprinters
17
18-- A longer description of the package.
19-- description:
20
21-- URL for the project homepage or repository.
22homepage: git://git.yggdrasil.li/thermoprint
23
24-- The license under which the package is released.
25license: PublicDomain
26
27-- The file containing the license text.
28license-file: LICENSE
29
30-- The package author(s).
31author: Gregor Kleen
32
33-- An email address to which users can send suggestions, bug reports, and
34-- patches.
35maintainer: aethoago@141.li
36
37-- A copyright notice.
38-- copyright:
39
40-- category:
41
42build-type: Simple
43
44-- Extra files to be distributed with the package, such as examples or a
45-- README.
46-- extra-source-files:
47
48-- Constraint on the version of Cabal needed to build this package.
49cabal-version: >=1.10
50
51
52library
53 -- Modules exported by the library.
54 exposed-modules: Thermoprint
55
56 -- Modules included in this library but not exported.
57 -- other-modules:
58
59 -- LANGUAGE extensions used by modules in this package.
60 -- other-extensions:
61
62 -- Other library packages from which modules are imported.
63 build-depends: base >=4.8 && <4.9
64
65 -- Directories containing source files.
66 hs-source-dirs: src
67
68 -- Base language which the package is written in.
69 default-language: Haskell2010
70 \ No newline at end of file
diff --git a/thermoprint/thermoprint.nix b/thermoprint/thermoprint.nix
new file mode 100644
index 0000000..9e90f15
--- /dev/null
+++ b/thermoprint/thermoprint.nix
@@ -0,0 +1,18 @@
1{ mkDerivation
2, stdenv
3, base
4}:
5
6mkDerivation {
7 pname = "thermoprint";
8 version = "0.0.0";
9 src = ./.;
10 isLibrary = false;
11 isExecutable = true;
12 executableHaskellDepends = [
13 base
14 ];
15 homepage = "git://git.yggdrasil.li/thermoprint";
16 description = "Description of formatting supported by cheap thermoprinters";
17 license = stdenv.lib.licenses.publicDomain;
18}