summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominique Martinet @ jormungand <asmadeus@codewreck.org>2020-09-01 16:57:40 +0200
committerDominique Martinet @ jormungand <asmadeus@codewreck.org>2020-09-01 16:57:40 +0200
commit1f40be29fe8cc60cf534e37404011f253dbb266e (patch)
tree887362581af7d0c03c178797aa675158c3e3221b
parent63ac25e3cead0e1788d6c91a03faef05d0cd8eaf (diff)
cryptpad: update to 3.20.1 (current version on nixpkgs master)
-rw-r--r--machines/jormungand/cryptpad.config.js393
-rw-r--r--pkgs/cryptpad/bower-packages.nix42
-rw-r--r--pkgs/cryptpad/default.nix69
-rwxr-xr-xpkgs/cryptpad/generate.sh13
-rw-r--r--pkgs/cryptpad/node-packages-generated.nix744
-rw-r--r--pkgs/cryptpad/node-packages.json3
-rw-r--r--pkgs/cryptpad/node-packages.nix17
-rw-r--r--pkgs/default.nix3
8 files changed, 1042 insertions, 242 deletions
diff --git a/machines/jormungand/cryptpad.config.js b/machines/jormungand/cryptpad.config.js
index eb53f4e..6963d16 100644
--- a/machines/jormungand/cryptpad.config.js
+++ b/machines/jormungand/cryptpad.config.js
@@ -1,60 +1,108 @@
-/*@flow*/
-/*
- globals module
-*/
-var _domain = 'https://cryptpad.codewreck.org/';
+/* globals module */
-// You can `kill -USR2` the node process and it will write out a heap dump.
-// If your system doesn't support dumping, comment this out and install with
-// `npm install --production`
-// See: https://strongloop.github.io/strongloop.com/strongblog/how-to-heap-snapshots/
+/* DISCLAIMER:
-// to enable this feature, uncomment the line below:
-// require('heapdump');
+ There are two recommended methods of running a CryptPad instance:
-// we prepend a space because every usage expects it
-// requiring admins to preserve it is unnecessarily confusing
-var domain = ' ' + _domain;
+ 1. Using a standalone nodejs server without HTTPS (suitable for local development)
+ 2. Using NGINX to serve static assets and to handle HTTPS for API server's websocket traffic
-// Content-Security-Policy
-var baseCSP = [
- "default-src 'none'",
- "style-src 'unsafe-inline' 'self' " + domain,
- "font-src 'self' data:" + domain,
+ We do not officially recommend or support Apache, Docker, Kubernetes, Traefik, or any other configuration.
+ Support requests for such setups should be directed to their authors.
- /* child-src is used to restrict iframes to a set of allowed domains.
- * connect-src is used to restrict what domains can connect to the websocket.
- *
- * it is recommended that you configure these fields to match the
- * domain which will serve your CryptPad instance.
- */
- "child-src blob: *",
- // IE/Edge
- "frame-src blob: *",
+ If you're having difficulty difficulty configuring your instance
+ we suggest that you join the project's IRC/Matrix channel.
- /* this allows connections over secure or insecure websockets
- if you are deploying to production, you'll probably want to remove
- the ws://* directive, and change '*' to your domain
- */
- "connect-src 'self' ws: wss: blob:" + domain,
+ If you don't have any difficulty configuring your instance and you'd like to
+ support us for the work that went into making it pain-free we are quite happy
+ to accept donations via our opencollective page: https://opencollective.com/cryptpad
- // data: is used by codemirror
- "img-src 'self' data: blob:" + domain,
- "media-src * blob:",
+*/
+module.exports = {
+/* CryptPad is designed to serve its content over two domains.
+ * Account passwords and cryptographic content is handled on the 'main' domain,
+ * while the user interface is loaded on a 'sandbox' domain
+ * which can only access information which the main domain willingly shares.
+ *
+ * In the event of an XSS vulnerability in the UI (that's bad)
+ * this system prevents attackers from gaining access to your account (that's good).
+ *
+ * Most problems with new instances are related to this system blocking access
+ * because of incorrectly configured sandboxes. If you only see a white screen
+ * when you try to load CryptPad, this is probably the cause.
+ *
+ * PLEASE READ THE FOLLOWING COMMENTS CAREFULLY.
+ *
+ */
+
+/* httpUnsafeOrigin is the URL that clients will enter to load your instance.
+ * Any other URL that somehow points to your instance is supposed to be blocked.
+ * The default provided below assumes you are loading CryptPad from a server
+ * which is running on the same machine, using port 3000.
+ *
+ * In a production instance this should be available ONLY over HTTPS
+ * using the default port for HTTPS (443) ie. https://cryptpad.fr
+ * In such a case this should be handled by NGINX, as documented in
+ * cryptpad/docs/example.nginx.conf (see the $main_domain variable)
+ *
+ */
+ httpUnsafeOrigin: 'https://cryptpad.codewreck.org/',
+
+/* httpSafeOrigin is the URL that is used for the 'sandbox' described above.
+ * If you're testing or developing with CryptPad on your local machine then
+ * it is appropriate to leave this blank. The default behaviour is to serve
+ * the main domain over port 3000 and to serve the content over port 3001.
+ *
+ * This is not appropriate in a production environment where invasive networks
+ * may filter traffic going over abnormal ports.
+ * To correctly configure your production instance you must provide a URL
+ * with a different domain (a subdomain is sufficient).
+ * It will be used to load the UI in our 'sandbox' system.
+ *
+ * This value corresponds to the $sandbox_domain variable
+ * in the example nginx file.
+ *
+ * CUSTOMIZE AND UNCOMMENT THIS FOR PRODUCTION INSTALLATIONS.
+ */
+ httpSafeOrigin: "https://cryptpad-sandbox.codewreck.org/",
+
+/* httpAddress specifies the address on which the nodejs server
+ * should be accessible. By default it will listen on 127.0.0.1
+ * (IPv4 localhost on most systems). If you want it to listen on
+ * all addresses, including IPv6, set this to '::'.
+ *
+ */
+ httpAddress: '::1',
- // for accounts.cryptpad.fr authentication and cross-domain iframe sandbox
- "frame-ancestors *",
- ""
-];
+/* httpPort specifies on which port the nodejs server should listen.
+ * By default it will serve content over port 3000, which is suitable
+ * for both local development and for use with the provided nginx example,
+ * which will proxy websocket traffic to your node server.
+ *
+ */
+ //httpPort: 3000,
+
+/* httpSafePort allows you to specify an alternative port from which
+ * the node process should serve sandboxed assets. The default value is
+ * that of your httpPort + 1. You probably don't need to change this.
+ *
+ */
+ httpSafePort: 3001,
+/* CryptPad will launch a child process for every core available
+ * in order to perform CPU-intensive tasks in parallel.
+ * Some host environments may have a very large number of cores available
+ * or you may want to limit how much computing power CryptPad can take.
+ * If so, set 'maxWorkers' to a positive integer.
+ */
+ // maxWorkers: 4,
-module.exports = {
/* =====================
* Admin
* ===================== */
/*
- * CryptPad now contains an administration panel. Its access is restricted to specific
+ * CryptPad contains an administration panel. Its access is restricted to specific
* users using the following list.
* To give access to the admin panel to a user account, just add their user id,
* which can be found on the settings page for registered users.
@@ -77,125 +125,77 @@ module.exports = {
*/
// supportMailboxPublicKey: "",
- /* =====================
- * Infra setup
- * ===================== */
-
- // the address you want to bind to, :: means all ipv4 and ipv6 addresses
- // this may not work on all operating systems
- httpAddress: '::1',
-
- // the port on which your httpd will listen
- httpPort: 3000,
-
- // This is for allowing the cross-domain iframe to function when developing
- httpSafePort: 3001,
-
- // This is for deployment in production, CryptPad uses a separate origin (domain) to host the
- // cross-domain iframe. It can simply host the same content as CryptPad.
- httpSafeOrigin: "https://cryptpad-sandbox.codewreck.org",
-
- httpUnsafeOrigin: domain,
-
- /* your server's websocket url is configurable
- * (default: '/cryptpad_websocket')
+ /* We're very proud that CryptPad is available to the public as free software!
+ * We do, however, still need to pay our bills as we develop the platform.
*
- * websocketPath can be relative, of the form '/path/to/websocket'
- * or absolute, specifying a particular URL
+ * By default CryptPad will prompt users to consider donating to
+ * our OpenCollective campaign. We publish the state of our finances periodically
+ * so you can decide for yourself whether our expenses are reasonable.
*
- * 'wss://cryptpad.fr:3000/cryptpad_websocket'
+ * You can disable any solicitations for donations by setting 'removeDonateButton' to true,
+ * but we'd appreciate it if you didn't!
*/
- websocketPath: '/cryptpad_websocket',
+ removeDonateButton: true,
- /* CryptPad can be configured to send customized HTTP Headers
- * These settings may vary widely depending on your needs
- * Examples are provided below
+ /* CryptPad will display a point of contact for your instance on its contact page
+ * (/contact.html) if you provide it below.
*/
- httpHeaders: {
- "X-XSS-Protection": "1; mode=block",
- "X-Content-Type-Options": "nosniff",
- "Access-Control-Allow-Origin": "*"
- },
+ adminEmail: 'qlgpfhcrencz.nnqf@noclue.notk.org',
- contentSecurity: baseCSP.join('; ') +
- "script-src 'self'" + domain,
-
- // CKEditor and OnlyOffice require significantly more lax content security policy in order to function.
- padContentSecurity: baseCSP.join('; ') +
- "script-src 'self' 'unsafe-eval' 'unsafe-inline'" + domain,
-
- /* it is recommended that you serve CryptPad over https
- * the filepaths below are used to configure your certificates
+ /*
+ * By default, CryptPad contacts one of our servers once a day.
+ * This check-in will also send some very basic information about your instance including its
+ * version and the adminEmail so we can reach you if we are aware of a serious problem.
+ * We will never sell it or send you marketing mail.
+ *
+ * If you want to block this check-in and remain set 'blockDailyCheck' to true.
*/
- //privKeyAndCertFiles: [
- // '/etc/apache2/ssl/my_secret.key',
- // '/etc/apache2/ssl/my_public_cert.crt',
- // '/etc/apache2/ssl/my_certificate_authorities_cert_chain.ca'
- //],
-
- /* Main pages
- * add exceptions to the router so that we can access /privacy.html
- * and other odd pages
+ blockDailyCheck: true,
+
+ /*
+ * By default users get 50MB of storage by registering on an instance.
+ * You can set this value to whatever you want.
+ *
+ * hint: 50MB is 50 * 1024 * 1024
*/
- mainPages: [
- 'index',
- 'privacy',
- 'terms',
- 'about',
- 'contact',
- 'what-is-cryptpad',
- 'features',
- 'faq',
- 'maintenance'
- ],
+ defaultStorageLimit: 1024 * 1024 * 1024,
+
/* =====================
- * Subscriptions
+ * STORAGE
* ===================== */
- /* Limits, Donations, Subscriptions and Contact
- *
- * By default, CryptPad limits every registered user to 50MB of storage. It also shows a
- * subscribe button which allows them to upgrade to a paid account. We handle payment,
- * and keep 50% of the proceeds to fund ongoing development.
- *
- * You can:
- * A: leave things as they are
- * B: disable accounts but display a donate button
- * C: hide any reference to paid accounts or donation
+ /* Pads that are not 'pinned' by any registered user can be set to expire
+ * after a configurable number of days of inactivity (default 90 days).
+ * The value can be changed or set to false to remove expiration.
+ * Expired pads can then be removed using a cron job calling the
+ * `evict-inactive.js` script with node
*
- * If you chose A then there's nothing to do.
- * If you chose B, set 'allowSubscriptions' to false.
- * If you chose C, set 'removeDonateButton' to true
- */
- allowSubscriptions: false,
- removeDonateButton: true,
-
- /*
- * By default, CryptPad also contacts our accounts server once a day to check for changes in
- * the people who have accounts. This check-in will also send the version of your CryptPad
- * instance and your email so we can reach you if we are aware of a serious problem. We will
- * never sell it or send you marketing mail. If you want to block this check-in and remain
- * completely invisible, set this and allowSubscriptions both to false.
+ * defaults to 90 days if nothing is provided
*/
- adminEmail: false,
+ //inactiveTime: 90, // days
- /* Sales coming from your server will be identified by your domain
+ /* CryptPad archives some data instead of deleting it outright.
+ * This archived data still takes up space and so you'll probably still want to
+ * remove these files after a brief period.
*
- * If you are using CryptPad in a business context, please consider taking a support contract
- * by contacting sales@cryptpad.fr
+ * cryptpad/scripts/evict-inactive.js is intended to be run daily
+ * from a crontab or similar scheduling service.
+ *
+ * The intent with this feature is to provide a safety net in case of accidental
+ * deletion. Set this value to the number of days you'd like to retain
+ * archived data before it's removed permanently.
+ *
+ * defaults to 15 days if nothing is provided
*/
- myDomain: _domain,
+ //archiveRetentionTime: 15,
- /*
- * If you are using CryptPad internally and you want to increase the per-user storage limit,
- * change the following value.
- *
- * Please note: This limit is what makes people subscribe and what pays for CryptPad
- * development. Running a public instance that provides a "better deal" than cryptpad.fr
- * is effectively using the project against itself.
+ /* Max Upload Size (bytes)
+ * this sets the maximum size of any one file uploaded to the server.
+ * anything larger than this size will be rejected
+ * defaults to 20MB if no value is provided
*/
- defaultStorageLimit: 1024 * 1024 * 1024,
+ maxUploadSize: 256 * 1024 * 1024,
/*
* CryptPad allows administrators to give custom limits to their friends.
@@ -205,8 +205,8 @@ module.exports = {
*
* hint: 1GB is 1024 * 1024 * 1024 bytes
*/
+/*
customLimits: {
- /*
"https://my.awesome.website/user/#/1/cryptpad-user1/YZgXQxKR0Rcb6r6CmxHPdAGLVludrAF2lEnkbx1vVOo=": {
limit: 20 * 1024 * 1024 * 1024,
plan: 'insider',
@@ -217,70 +217,15 @@ module.exports = {
plan: 'insider',
note: 'storage space donated by my.awesome.website'
}
- */
},
+*/
- /* =====================
- * STORAGE
- * ===================== */
-
- /* By default the CryptPad server will run scheduled tasks every five minutes
- * If you want to run scheduled tasks in a separate process (like a crontab)
- * you can disable this behaviour by setting the following value to true
- */
- disableIntegratedTasks: false,
-
- /* Pads that are not 'pinned' by any registered user can be set to expire
- * after a configurable number of days of inactivity (default 90 days).
- * The value can be changed or set to false to remove expiration.
- * Expired pads can then be removed using a cron job calling the
- * `delete-inactive.js` script with node
- */
- inactiveTime: 90, // days
-
- /* CryptPad can be configured to remove inactive data which has not been pinned.
- * Deletion of data is always risky and as an operator you have the choice to
- * archive data instead of deleting it outright. Set this value to true if
- * you want your server to archive files and false if you want to keep using
- * the old behaviour of simply removing files.
+ /* Users with premium accounts (those with a plan included in their customLimit)
+ * can benefit from an increased upload size limit. By default they are restricted to the same
+ * upload size as any other registered user.
*
- * WARNING: this is not implemented universally, so at the moment this will
- * only apply to the removal of 'channels' due to inactivity.
*/
- retainData: true,
-
- /* As described above, CryptPad offers the ability to archive some data
- * instead of deleting it outright. This archived data still takes up space
- * and so you'll probably still want to remove these files after a brief period.
- * The intent with this feature is to provide a safety net in case of accidental
- * deletion. Set this value to the number of days you'd like to retain
- * archived data before it's removed permanently.
- *
- * If 'retainData' is set to false, there will never be any archived data
- * to remove.
- */
- archiveRetentionTime: 15,
-
- /* Max Upload Size (bytes)
- * this sets the maximum size of any one file uploaded to the server.
- * anything larger than this size will be rejected
- */
- maxUploadSize: 256 * 1024 * 1024,
-
- /* =====================
- * HARDWARE RELATED
- * ===================== */
-
- /* CryptPad's file storage adaptor closes unused files after a configurable
- * number of milliseconds (default 30000 (30 seconds))
- */
- channelExpirationMs: 30000,
-
- /* CryptPad's file storage adaptor is limited by the number of open files.
- * When the adaptor reaches openFileLimit, it will clean up older files
- */
- openFileLimit: 2048,
-
+ //premiumUploadSize: 100 * 1024 * 1024,
/* =====================
* DATABASE VOLUMES
@@ -307,12 +252,12 @@ module.exports = {
* Pin requests are stored in a pin-store. The location of this store is
* defined here.
*/
- pinPath: './pins',
+ pinPath: './data/pins',
/* if you would like the list of scheduled tasks to be stored in
a custom location, change the path below:
*/
- taskPath: './tasks',
+ taskPath: './data/tasks',
/* if you would like users' authenticated blocks to be stored in
a custom location, change the path below:
@@ -327,7 +272,7 @@ module.exports = {
/* CryptPad stores incomplete blobs in a 'staging' area until they are
* fully uploaded. Set its location here.
*/
- blobStagingPath: './blobstage',
+ blobStagingPath: './data/blobstage',
/* CryptPad supports logging events directly to the disk in a 'logs' directory
* Set its location here, or set it to false (or nothing) if you'd rather not log
@@ -368,42 +313,6 @@ module.exports = {
*/
logFeedback: false,
- /* You can get a repl for debugging the server if you want it.
- * to enable this, specify the debugReplName and then you can
- * connect to it with `nc -U /tmp/repl/<your name>.sock`
- * If you run multiple cryptpad servers, you need to use different
- * repl names.
- */
- //debugReplName: "cryptpad"
-
- /* =====================
- * DEPRECATED
- * ===================== */
- /*
- You have the option of specifying an alternative storage adaptor.
- These status of these alternatives are specified in their READMEs,
- which are available at the following URLs:
-
- mongodb: a noSQL database
- https://github.com/xwiki-labs/cryptpad-mongo-store
- amnesiadb: in memory storage
- https://github.com/xwiki-labs/cryptpad-amnesia-store
- leveldb: a simple, fast, key-value store
- https://github.com/xwiki-labs/cryptpad-level-store
- sql: an adaptor for a variety of sql databases via knexjs
- https://github.com/xwiki-labs/cryptpad-sql-store
-
- For the most up to date solution, use the default storage adaptor.
- */
- storage: './storage/file',
-
- /* CryptPad's socket server can be extended to respond to RPC calls
- * you can configure it to respond to custom RPC calls if you like.
- * provide the path to your RPC module here, or `false` if you would
- * like to disable the RPC interface completely
- */
- rpc: './rpc.js',
-
/* CryptPad supports verbose logging
* (false by default)
*/
diff --git a/pkgs/cryptpad/bower-packages.nix b/pkgs/cryptpad/bower-packages.nix
new file mode 100644
index 0000000..be0c3ab
--- /dev/null
+++ b/pkgs/cryptpad/bower-packages.nix
@@ -0,0 +1,42 @@
+# Generated by bower2nix v3.2.0 (https://github.com/rvl/bower2nix)
+{ fetchbower, buildEnv }:
+buildEnv { name = "bower-env"; ignoreCollisions = true; paths = [
+ (fetchbower "jquery" "2.1.0" "~2.1.0" "02kwvz93vzpv10qnp7s0dz3al0jh77awwrizb6wadsvgifxssnlr")
+ (fetchbower "jquery" "2.2.4" "2.2.4" "0kaln93pzjlr4vqf2zvsm9dwgjkrii9xlsqg48hc1vs16cl109rn")
+ (fetchbower "tweetnacl" "0.12.2" "0.12.2" "1lfzbfrdaly3zyzbcp1p53yhxlrx56k8x04q924kg7l52gblm65g")
+ (fetchbower "components-font-awesome" "4.7.0" "^4.6.3" "1w27im6ayjrbgjqa0i49ml5d3wy4ld40h9b29hz9myv77bpx4lg1")
+ (fetchbower "ckeditor" "4.14.0" "4.14.0" "0lw9q0k8c0jlxvf35vrccab9c3c8rgpc6x66czj9si8yy2lyliyp")
+ (fetchbower "codemirror" "5.56.0+components1" "^5.19.0" "0fv8rxw6dspyv4bl6p2aka57544f45527rallnhnm5scv77qnakm")
+ (fetchbower "requirejs" "2.3.5" "2.3.5" "05lyvgz914h2w08r24rk0vkk3yxmqrvlg7j3i5av9ffkg9lpzsli")
+ (fetchbower "marked" "1.1.0" "1.1.0" "1sdgqw9iki9c1pfm4c5h6c956mchbip2jywjrcmrlb75k53flsjz")
+ (fetchbower "rangy" "rangy-release#1.3.0" "rangy-release#~1.3.0" "13x3wci003p8jyv2ncir0k23bxckx99b3555r0zvgmlwycg7w0zv")
+ (fetchbower "json.sortify" "2.1.0" "~2.1.0" "1rz9xz0gnm4ak31n10vhslqsw8fw493gjylwj8xsy3bxqq1ygpnh")
+ (fetchbower "secure-fabric.js" "secure-v1.7.9" "secure-v1.7.9" "1l56mk7hbnsm9cdg5zdcmg95p7a9w96dq0bbl8fp11vs0awjil7a")
+ (fetchbower "hyperjson" "1.4.0" "~1.4.0" "1n68ls3x4lyhg1yy8i4q3xkgh5xqpyakf45sny4x91mkr68x4bd9")
+ (fetchbower "chainpad-crypto" "0.2.4" "^0.2.0" "0sqqc2j0pc34ig6319n18i85j03hibqkhz3cbr70vbd8x43vfzby")
+ (fetchbower "chainpad-listmap" "0.9.0" "^0.9.0" "173yr5a6zxq7nb3fha6f1ajv2vy0mvqwmm949ww7ihvrhh7cd0f5")
+ (fetchbower "chainpad" "5.2.2" "^5.2.0" "1rmh039bqk11xnnh99sqrqksr4idly75y5q4f5wyl9cg4slsqrdp")
+ (fetchbower "file-saver" "1.3.1" "1.3.1" "065nzkvdiicxnw06z1sjz1sbp9nyis8z839hv6ng1fk25dc5kvkg")
+ (fetchbower "alertifyjs" "1.0.11" "1.0.11" "0v7323bzq90k35shm3h6azj4wd9la3kbi1va1pw4qyvndkwma69l")
+ (fetchbower "scrypt-async" "1.2.0" "1.2.0" "0d076ax708p9b8hcmk4f82j925nlnm0hmp0ni45ql37g7iirfpyv")
+ (fetchbower "require-css" "0.1.10" "0.1.10" "106gz9i76v71q9zx2pnqkkj342m630lvssnw54023a0ljc0gqcwq")
+ (fetchbower "less" "3.7.1" "3.7.1" "1n7ps4xlbrc9m63b3q62mg3p6i7d5hwchhpjshb0drzj5crvz556")
+ (fetchbower "bootstrap" "3.1.1" "~3.1.1" "06bhjwa8p7mzbpr3jkgydd804z1nwrkdql66h7jkfml99psv9811")
+ (fetchbower "bootstrap" "4.5.0" "^v4.0.0" "0cfdn6z8jwx6y8lbbq6xpkfhq2vra0i84nkj9ji2bil1fzgzi40f")
+ (fetchbower "diff-dom" "2.1.1" "2.1.1" "0nrn6xqlhp0p5ixjxdk8qg3939crkggh1l8swd20d7bsz186l5f1")
+ (fetchbower "nthen" "0.1.7" "0.1.7" "03yap5ildigaw4rwxmxs37pcwhq415iham8w39zd56ka98gpfxa5")
+ (fetchbower "open-sans-fontface" "1.4.2" "^1.4.2" "0ksav1fcq640fmdz49ra4prwsrrfj35y2p4shx1jh1j7zxd044nf")
+ (fetchbower "bootstrap-tokenfield" "0.12.1" "^0.12.1" "0ib1v5k8h360sp19yiy7q92rfaz2554fvwwg2ixmxn01ydqlprw6")
+ (fetchbower "localforage" "1.8.1" "^1.5.2" "0ci265385racnxvn4g1n672yaxi47msw6k042nxdb5vlpf5g327j")
+ (fetchbower "html2canvas" "0.4.1" "^0.4.1" "0yg7y90nav068q0i5afc2c221zkddpf28hi0hwc46cawx4180c69")
+ (fetchbower "croppie" "2.6.5" "^2.5.0" "1j1v5620zi13ad42r358i4ay891abwn6nz357484kgq2bgjj6ccx")
+ (fetchbower "sortablejs" "1.10.2" "^1.6.0" "10q4gyblhjy7w51clr0k9j7h722l4ybzn5535givwpmp6xagv11v")
+ (fetchbower "saferphore" "0.0.1" "^0.0.1" "1wfr9wpbm3lswmvy2p0247ydb108h4qh5s286py89k871qh6jwdi")
+ (fetchbower "jszip" "Stuk/jszip#3.5.0" "Stuk/jszip#^3.1.5" "1ra19d82cq1hrnbw88l8c61bs12kpgxvbfiiwpfi8fhy0l8hcsvk")
+ (fetchbower "requirejs-plugins" "1.0.3" "^1.0.3" "00s3sdz1ykygx5shldwhhhybwgw7c99vkqd94i5i5x0gl97ifxf5")
+ (fetchbower "dragula.js" "3.7.2" "3.7.2" "0dbkmrl8bcxiplprmmp9fj96ri5nahb2ql8cc7zwawncv0drvlh0")
+ (fetchbower "MathJax" "3.0.5" "3.0.5" "087a9av15qj43m8pr3b9g59ncmydhmg40m6dfzsac62ykianh2a0")
+ (fetchbower "chainpad-netflux" "0.11.2" "^0.11.0" "1dqfricbm6s8iv7w1bsx1700m5cpk5rk1f4spqv0fqyf6mdz366v")
+ (fetchbower "netflux-websocket" "0.1.20" "^0.1.20" "1xwqq7nw7fmhglndbplarkdzxfmkq831aqs8nm6qj0hz2ggbibhz")
+ (fetchbower "es6-promise" "3.3.1" "^3.2.2" "0ai6z5admfs84fdx6663ips49kqgz4x68ays78cic0xfb7pp6vcz")
+]; }
diff --git a/pkgs/cryptpad/default.nix b/pkgs/cryptpad/default.nix
new file mode 100644
index 0000000..abd20d6
--- /dev/null
+++ b/pkgs/cryptpad/default.nix
@@ -0,0 +1,69 @@
+{ stdenv
+, pkgs
+, lib
+, buildBowerComponents
+, fetchurl
+, nodejs
+}:
+
+let
+ nodePackages = import ./node-packages.nix {
+ inherit pkgs nodejs;
+ inherit (stdenv.hostPlatform) system;
+ };
+
+ bowerPackages = buildBowerComponents {
+ name = "${cryptpad.name}-bower-packages";
+ # this list had to be tweaked by hand:
+ # * add the second jquery ~2.1.0 entry
+ # * add the second bootstrap ~3.1.1 entry
+ generated = ./bower-packages.nix;
+ src = cryptpad.src;
+ };
+
+ # find an element in an attribute set
+ findValue = pred: default: set:
+ let
+ list =
+ lib.concatMap
+ (name:
+ let v = set.${name}; in
+ if pred name v then [v] else []
+ )
+ (lib.attrNames set)
+ ;
+ in
+ if list == [] then default
+ else lib.head list
+ ;
+
+ # The cryptpad package attribute key changes for each release. Get it out
+ # programatically instead.
+ cryptpad = findValue
+ (k: v: v.packageName == "cryptpad")
+ (throw "cryptpad not found")
+ nodePackages
+ ;
+
+ combined = cryptpad.override {
+ postInstall = ''
+ out_cryptpad=$out/lib/node_modules/cryptpad
+
+ substituteInPlace $out_cryptpad/lib/workers/index.js --replace "lib/workers/db-worker" "$out_cryptpad/lib/workers/db-worker"
+
+ # add the bower components
+ ln -sv \
+ ${bowerPackages}/bower_components \
+ $out_cryptpad/www/bower_components
+
+ # add executable
+ mkdir $out/bin
+ cat <<EOF > $out/bin/cryptpad
+ #!${stdenv.shell}
+ exec ${nodejs}/bin/node $out_cryptpad/server.js
+ EOF
+ chmod +x $out/bin/cryptpad
+ '';
+ };
+in
+ combined
diff --git a/pkgs/cryptpad/generate.sh b/pkgs/cryptpad/generate.sh
new file mode 100755
index 0000000..de2d120
--- /dev/null
+++ b/pkgs/cryptpad/generate.sh
@@ -0,0 +1,13 @@
+#!/usr/bin/env nix-shell
+#! nix-shell -i bash -I nixpkgs=../../../.. -p nodePackages.node2nix nodePackages.bower2nix
+set -euo pipefail
+
+node2nix --nodejs-12 \
+ --input node-packages.json \
+ --output node-packages-generated.nix \
+ --composition node-packages.nix \
+ --node-env ../../../development/node-packages/node-env.nix \
+
+TAG=$(sed -ne 's/.*#\([0-9.]*\).*/\1/p' < node-packages.json)
+curl "https://raw.githubusercontent.com/xwiki-labs/cryptpad/${TAG}/bower.json" -s |
+ bower2nix /dev/stdin > bower-packages.nix
diff --git a/pkgs/cryptpad/node-packages-generated.nix b/pkgs/cryptpad/node-packages-generated.nix
new file mode 100644
index 0000000..349ad59
--- /dev/null
+++ b/pkgs/cryptpad/node-packages-generated.nix
@@ -0,0 +1,744 @@
+# This file has been generated by node2nix 1.8.0. Do not edit!
+
+{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
+
+let
+ sources = {
+ "accepts-1.3.7" = {
+ name = "accepts";
+ packageName = "accepts";
+ version = "1.3.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz";
+ sha512 = "Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==";
+ };
+ };
+ "array-flatten-1.1.1" = {
+ name = "array-flatten";
+ packageName = "array-flatten";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz";
+ sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2";
+ };
+ };
+ "async-limiter-1.0.1" = {
+ name = "async-limiter";
+ packageName = "async-limiter";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz";
+ sha512 = "csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==";
+ };
+ };
+ "body-parser-1.18.3" = {
+ name = "body-parser";
+ packageName = "body-parser";
+ version = "1.18.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz";
+ sha1 = "5b292198ffdd553b3a0f20ded0592b956955c8b4";
+ };
+ };
+ "bytes-3.0.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz";
+ sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048";
+ };
+ };
+ "chainpad-crypto-0.2.4" = {
+ name = "chainpad-crypto";
+ packageName = "chainpad-crypto";
+ version = "0.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chainpad-crypto/-/chainpad-crypto-0.2.4.tgz";
+ sha512 = "fWbVyeAv35vf/dkkQaefASlJcEfpEvfRI23Mtn+/TBBry7+LYNuJMXJiovVY35pfyw2+trKh1Py5Asg9vrmaVg==";
+ };
+ };
+ "chainpad-server-4.0.9" = {
+ name = "chainpad-server";
+ packageName = "chainpad-server";
+ version = "4.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chainpad-server/-/chainpad-server-4.0.9.tgz";
+ sha512 = "8h1W41ktE05TM6LuXrklpW2TUxWeNyIDiRaQygKsXaA/7pyJxF7+AmPVS+xW0c31VkHjQDPiaMzPoxhcxXnIyA==";
+ };
+ };
+ "content-disposition-0.5.2" = {
+ name = "content-disposition";
+ packageName = "content-disposition";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz";
+ sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4";
+ };
+ };
+ "content-type-1.0.4" = {
+ name = "content-type";
+ packageName = "content-type";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz";
+ sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==";
+ };
+ };
+ "cookie-0.3.1" = {
+ name = "cookie";
+ packageName = "cookie";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz";
+ sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb";
+ };
+ };
+ "cookie-signature-1.0.6" = {
+ name = "cookie-signature";
+ packageName = "cookie-signature";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz";
+ sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c";
+ };
+ };
+ "debug-2.6.9" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.6.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
+ sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==";
+ };
+ };
+ "depd-1.1.2" = {
+ name = "depd";
+ packageName = "depd";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz";
+ sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9";
+ };
+ };
+ "destroy-1.0.4" = {
+ name = "destroy";
+ packageName = "destroy";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz";
+ sha1 = "978857442c44749e4206613e37946205826abd80";
+ };
+ };
+ "ee-first-1.1.1" = {
+ name = "ee-first";
+ packageName = "ee-first";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz";
+ sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d";
+ };
+ };
+ "encodeurl-1.0.2" = {
+ name = "encodeurl";
+ packageName = "encodeurl";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz";
+ sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59";
+ };
+ };
+ "escape-html-1.0.3" = {
+ name = "escape-html";
+ packageName = "escape-html";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz";
+ sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988";
+ };
+ };
+ "etag-1.8.1" = {
+ name = "etag";
+ packageName = "etag";
+ version = "1.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz";
+ sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887";
+ };
+ };
+ "express-4.16.4" = {
+ name = "express";
+ packageName = "express";
+ version = "4.16.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express/-/express-4.16.4.tgz";
+ sha512 = "j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==";
+ };
+ };
+ "finalhandler-1.1.1" = {
+ name = "finalhandler";
+ packageName = "finalhandler";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz";
+ sha512 = "Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==";
+ };
+ };
+ "forwarded-0.1.2" = {
+ name = "forwarded";
+ packageName = "forwarded";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz";
+ sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84";
+ };
+ };
+ "fresh-0.5.2" = {
+ name = "fresh";
+ packageName = "fresh";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz";
+ sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7";
+ };
+ };
+ "fs-extra-7.0.1" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "7.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz";
+ sha512 = "YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==";
+ };
+ };
+ "gar-1.0.4" = {
+ name = "gar";
+ packageName = "gar";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gar/-/gar-1.0.4.tgz";
+ sha512 = "w4n9cPWyP7aHxKxYHFQMegj7WIAsL/YX/C4Bs5Rr8s1H9M1rNtRWRsw+ovYMkXDQ5S4ZbYHsHAPmevPjPgw44w==";
+ };
+ };
+ "get-folder-size-2.0.1" = {
+ name = "get-folder-size";
+ packageName = "get-folder-size";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-folder-size/-/get-folder-size-2.0.1.tgz";
+ sha512 = "+CEb+GDCM7tkOS2wdMKTn9vU7DgnKUTuDlehkNJKNSovdCOVxs14OfKCk4cvSaR3za4gj+OBdl9opPN9xrJ0zA==";
+ };
+ };
+ "graceful-fs-4.2.4" = {
+ name = "graceful-fs";
+ packageName = "graceful-fs";
+ version = "4.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz";
+ sha512 = "WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==";
+ };
+ };
+ "http-errors-1.6.3" = {
+ name = "http-errors";
+ packageName = "http-errors";
+ version = "1.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz";
+ sha1 = "8b55680bb4be283a0b5bf4ea2e38580be1d9320d";
+ };
+ };
+ "iconv-lite-0.4.23" = {
+ name = "iconv-lite";
+ packageName = "iconv-lite";
+ version = "0.4.23";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz";
+ sha512 = "neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==";
+ };
+ };
+ "inherits-2.0.3" = {
+ name = "inherits";
+ packageName = "inherits";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
+ sha1 = "633c2c83e3da42a502f52466022480f4208261de";
+ };
+ };
+ "ipaddr.js-1.9.1" = {
+ name = "ipaddr.js";
+ packageName = "ipaddr.js";
+ version = "1.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz";
+ sha512 = "0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==";
+ };
+ };
+ "jsonfile-4.0.0" = {
+ name = "jsonfile";
+ packageName = "jsonfile";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz";
+ sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb";
+ };
+ };
+ "lex-1.7.9" = {
+ name = "lex";
+ packageName = "lex";
+ version = "1.7.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lex/-/lex-1.7.9.tgz";
+ sha1 = "5d5636ccef574348362938b79a47f0eed8ed0d43";
+ };
+ };
+ "looper-3.0.0" = {
+ name = "looper";
+ packageName = "looper";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/looper/-/looper-3.0.0.tgz";
+ sha1 = "2efa54c3b1cbaba9b94aee2e5914b0be57fbb749";
+ };
+ };
+ "media-typer-0.3.0" = {
+ name = "media-typer";
+ packageName = "media-typer";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz";
+ sha1 = "8710d7af0aa626f8fffa1ce00168545263255748";
+ };
+ };
+ "merge-descriptors-1.0.1" = {
+ name = "merge-descriptors";
+ packageName = "merge-descriptors";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz";
+ sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61";
+ };
+ };
+ "methods-1.1.2" = {
+ name = "methods";
+ packageName = "methods";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz";
+ sha1 = "5529a4d67654134edcc5266656835b0f851afcee";
+ };
+ };
+ "mime-1.4.1" = {
+ name = "mime";
+ packageName = "mime";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz";
+ sha512 = "KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==";
+ };
+ };
+ "mime-db-1.44.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.44.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz";
+ sha512 = "/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==";
+ };
+ };
+ "mime-types-2.1.27" = {
+ name = "mime-types";
+ packageName = "mime-types";
+ version = "2.1.27";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz";
+ sha512 = "JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==";
+ };
+ };
+ "ms-2.0.0" = {
+ name = "ms";
+ packageName = "ms";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
+ sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
+ };
+ };
+ "negotiator-0.6.2" = {
+ name = "negotiator";
+ packageName = "negotiator";
+ version = "0.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz";
+ sha512 = "hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==";
+ };
+ };
+ "netflux-websocket-0.1.20" = {
+ name = "netflux-websocket";
+ packageName = "netflux-websocket";
+ version = "0.1.20";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/netflux-websocket/-/netflux-websocket-0.1.20.tgz";
+ sha512 = "svFkw4ol4gmkcXKnx5kF/8tR9mmtTCDzUlLy4mSlcNl/4iWlbDmgwp/+aJ3nqtv8fg12m+DAFGX2+fbC0//dcg==";
+ };
+ };
+ "nthen-0.1.8" = {
+ name = "nthen";
+ packageName = "nthen";
+ version = "0.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nthen/-/nthen-0.1.8.tgz";
+ sha512 = "Oh2CwIbhj+wUT94lQV7LKmmgw3UYAGGd8oLIqp6btQN3Bz3PuWp4BuvtUo35H3rqDknjPfKx5P6mt7v+aJNjcw==";
+ };
+ };
+ "on-finished-2.3.0" = {
+ name = "on-finished";
+ packageName = "on-finished";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz";
+ sha1 = "20f1336481b083cd75337992a16971aa2d906947";
+ };
+ };
+ "parseurl-1.3.3" = {
+ name = "parseurl";
+ packageName = "parseurl";
+ version = "1.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz";
+ sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==";
+ };
+ };
+ "path-to-regexp-0.1.7" = {
+ name = "path-to-regexp";
+ packageName = "path-to-regexp";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz";
+ sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c";
+ };
+ };
+ "proxy-addr-2.0.6" = {
+ name = "proxy-addr";
+ packageName = "proxy-addr";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz";
+ sha512 = "dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==";
+ };
+ };
+ "pull-stream-3.6.14" = {
+ name = "pull-stream";
+ packageName = "pull-stream";
+ version = "3.6.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.6.14.tgz";
+ sha512 = "KIqdvpqHHaTUA2mCYcLG1ibEbu/LCKoJZsBWyv9lSYtPkJPBq8m3Hxa103xHi6D2thj5YXa0TqK3L3GUkwgnew==";
+ };
+ };
+ "qs-6.5.2" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz";
+ sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==";
+ };
+ };
+ "range-parser-1.2.1" = {
+ name = "range-parser";
+ packageName = "range-parser";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz";
+ sha512 = "Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==";
+ };
+ };
+ "raw-body-2.3.3" = {
+ name = "raw-body";
+ packageName = "raw-body";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz";
+ sha512 = "9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==";
+ };
+ };
+ "safe-buffer-5.1.2" = {
+ name = "safe-buffer";
+ packageName = "safe-buffer";
+ version = "5.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz";
+ sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==";
+ };
+ };
+ "safer-buffer-2.1.2" = {
+ name = "safer-buffer";
+ packageName = "safer-buffer";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz";
+ sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
+ };
+ };
+ "saferphore-0.0.1" = {
+ name = "saferphore";
+ packageName = "saferphore";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/saferphore/-/saferphore-0.0.1.tgz";
+ sha1 = "cc962eda4e2b2452e6437fd32dcfb6f69ef2ea63";
+ };
+ };
+ "send-0.16.2" = {
+ name = "send";
+ packageName = "send";
+ version = "0.16.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/send/-/send-0.16.2.tgz";
+ sha512 = "E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==";
+ };
+ };
+ "serve-static-1.13.2" = {
+ name = "serve-static";
+ packageName = "serve-static";
+ version = "1.13.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz";
+ sha512 = "p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==";
+ };
+ };
+ "setprototypeof-1.1.0" = {
+ name = "setprototypeof";
+ packageName = "setprototypeof";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz";
+ sha512 = "BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==";
+ };
+ };
+ "sortify-1.0.4" = {
+ name = "sortify";
+ packageName = "sortify";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sortify/-/sortify-1.0.4.tgz";
+ sha1 = "f0178687c83231be8a34fc0ec5462ea957b60284";
+ };
+ };
+ "statuses-1.4.0" = {
+ name = "statuses";
+ packageName = "statuses";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz";
+ sha512 = "zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==";
+ };
+ };
+ "stream-to-pull-stream-1.7.3" = {
+ name = "stream-to-pull-stream";
+ packageName = "stream-to-pull-stream";
+ version = "1.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-to-pull-stream/-/stream-to-pull-stream-1.7.3.tgz";
+ sha512 = "6sNyqJpr5dIOQdgNy/xcDWwDuzAsAwVzhzrWlAPAQ7Lkjx/rv0wgvxEyKwTq6FmNd5rjTrELt/CLmaSw7crMGg==";
+ };
+ };
+ "tiny-each-async-2.0.3" = {
+ name = "tiny-each-async";
+ packageName = "tiny-each-async";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tiny-each-async/-/tiny-each-async-2.0.3.tgz";
+ sha1 = "8ebbbfd6d6295f1370003fbb37162afe5a0a51d1";
+ };
+ };
+ "tweetnacl-0.12.2" = {
+ name = "tweetnacl";
+ packageName = "tweetnacl";
+ version = "0.12.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.12.2.tgz";
+ sha1 = "bd59f890507856fb0a1136acc3a8b44547e29ddb";
+ };
+ };
+ "tweetnacl-git://github.com/dchest/tweetnacl-js.git#v0.12.2" = {
+ name = "tweetnacl";
+ packageName = "tweetnacl";
+ version = "0.12.2";
+ src = fetchgit {
+ url = "git://github.com/dchest/tweetnacl-js.git";
+ rev = "8a21381d696acdc4e99c9f706f1ad23285795f79";
+ sha256 = "10f27b673944107995b3f6dcd65caecd705acdae9c37b7e79b810a8a72a40a31";
+ };
+ };
+ "type-is-1.6.18" = {
+ name = "type-is";
+ packageName = "type-is";
+ version = "1.6.18";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz";
+ sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==";
+ };
+ };
+ "ulimit-0.0.2" = {
+ name = "ulimit";
+ packageName = "ulimit";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ulimit/-/ulimit-0.0.2.tgz";
+ sha1 = "2b51f9dc8381ae4102636cec5eb338c2630588a0";
+ };
+ };
+ "ultron-1.1.1" = {
+ name = "ultron";
+ packageName = "ultron";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz";
+ sha512 = "UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==";
+ };
+ };
+ "universalify-0.1.2" = {
+ name = "universalify";
+ packageName = "universalify";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz";
+ sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==";
+ };
+ };
+ "unpipe-1.0.0" = {
+ name = "unpipe";
+ packageName = "unpipe";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz";
+ sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec";
+ };
+ };
+ "utils-merge-1.0.1" = {
+ name = "utils-merge";
+ packageName = "utils-merge";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz";
+ sha1 = "9f95710f50a267947b2ccc124741c1028427e713";
+ };
+ };
+ "vary-1.1.2" = {
+ name = "vary";
+ packageName = "vary";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz";
+ sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc";
+ };
+ };
+ "ws-3.3.3" = {
+ name = "ws";
+ packageName = "ws";
+ version = "3.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz";
+ sha512 = "nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==";
+ };
+ };
+ };
+in
+{
+ "cryptpad-git+https://github.com/xwiki-labs/cryptpad.git#3.20.1" = nodeEnv.buildNodePackage {
+ name = "cryptpad";
+ packageName = "cryptpad";
+ version = "3.20.1";
+ src = fetchgit {
+ url = "https://github.com/xwiki-labs/cryptpad.git";
+ rev = "9bc27d7d0d50d17c345bd545a45341a05293c558";
+ sha256 = "4a1fc833b38b2097741500cef38c6b04f5b752c21736e95eb492c33012016332";
+ };
+ dependencies = [
+ sources."accepts-1.3.7"
+ sources."array-flatten-1.1.1"
+ sources."async-limiter-1.0.1"
+ sources."body-parser-1.18.3"
+ sources."bytes-3.0.0"
+ (sources."chainpad-crypto-0.2.4" // {
+ dependencies = [
+ sources."tweetnacl-git://github.com/dchest/tweetnacl-js.git#v0.12.2"
+ ];
+ })
+ sources."chainpad-server-4.0.9"
+ sources."content-disposition-0.5.2"
+ sources."content-type-1.0.4"
+ sources."cookie-0.3.1"
+ sources."cookie-signature-1.0.6"
+ sources."debug-2.6.9"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."escape-html-1.0.3"
+ sources."etag-1.8.1"
+ sources."express-4.16.4"
+ sources."finalhandler-1.1.1"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."fs-extra-7.0.1"
+ sources."gar-1.0.4"
+ sources."get-folder-size-2.0.1"
+ sources."graceful-fs-4.2.4"
+ sources."http-errors-1.6.3"
+ sources."iconv-lite-0.4.23"
+ sources."inherits-2.0.3"
+ sources."ipaddr.js-1.9.1"
+ sources."jsonfile-4.0.0"
+ sources."lex-1.7.9"
+ sources."looper-3.0.0"
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."mime-1.4.1"
+ sources."mime-db-1.44.0"
+ sources."mime-types-2.1.27"
+ sources."ms-2.0.0"
+ sources."negotiator-0.6.2"
+ sources."netflux-websocket-0.1.20"
+ sources."nthen-0.1.8"
+ sources."on-finished-2.3.0"
+ sources."parseurl-1.3.3"
+ sources."path-to-regexp-0.1.7"
+ sources."proxy-addr-2.0.6"
+ sources."pull-stream-3.6.14"
+ sources."qs-6.5.2"
+ sources."range-parser-1.2.1"
+ sources."raw-body-2.3.3"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."saferphore-0.0.1"
+ sources."send-0.16.2"
+ sources."serve-static-1.13.2"
+ sources."setprototypeof-1.1.0"
+ sources."sortify-1.0.4"
+ sources."statuses-1.4.0"
+ sources."stream-to-pull-stream-1.7.3"
+ sources."tiny-each-async-2.0.3"
+ sources."tweetnacl-0.12.2"
+ sources."type-is-1.6.18"
+ sources."ulimit-0.0.2"
+ sources."ultron-1.1.1"
+ sources."universalify-0.1.2"
+ sources."unpipe-1.0.0"
+ sources."utils-merge-1.0.1"
+ sources."vary-1.1.2"
+ sources."ws-3.3.3"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "realtime collaborative visual editor with zero knowlege server";
+ license = "AGPL-3.0+";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+} \ No newline at end of file
diff --git a/pkgs/cryptpad/node-packages.json b/pkgs/cryptpad/node-packages.json
new file mode 100644
index 0000000..07e02a1
--- /dev/null
+++ b/pkgs/cryptpad/node-packages.json
@@ -0,0 +1,3 @@
+[
+ { "cryptpad": "git+https://github.com/xwiki-labs/cryptpad.git#3.20.1" }
+]
diff --git a/pkgs/cryptpad/node-packages.nix b/pkgs/cryptpad/node-packages.nix
new file mode 100644
index 0000000..aba0d67
--- /dev/null
+++ b/pkgs/cryptpad/node-packages.nix
@@ -0,0 +1,17 @@
+# This file has been generated by node2nix 1.8.0. Do not edit!
+
+{pkgs ? import <nixpkgs> {
+ inherit system;
+ }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-12_x"}:
+
+let
+ nodeEnv = import (pkgs.path + "/pkgs/development/node-packages/node-env.nix") {
+ inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile;
+ inherit nodejs;
+ libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
+ };
+in
+import ./node-packages-generated.nix {
+ inherit (pkgs) fetchurl fetchgit;
+ inherit nodeEnv;
+}
diff --git a/pkgs/default.nix b/pkgs/default.nix
index 74a0f94..dff4419 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -19,6 +19,9 @@ self: super: {
};
});
+ # more up to date package, from master branch
+ cryptpad = super.callPackage ./cryptpad { };
+
robinhood-v3 = super.callPackage ./robinhood-v3 { };
robinhood = super.callPackage ./robinhood { };