| 21 May 2021 |
sephi | But from what I can see you’re right, the filename_extended plugin seems bundled in the package | 15:20:48 |
sterni | yeah subpackages should be :) | 15:21:15 |
sephi | Here’s my derivation:
let
pkgs = import <nixos-unstable> { };
in pkgs.ocamlPackages.buildDunePackage rec {
pname = "comby";
version = "1.5.1";
useDune2 = true;
minimumOcamlVersion = "4.11.0";
src = pkgs.fetchFromGitHub {
owner = "comby-tools";
repo = pname;
rev = version;
sha256 = "1ipfrr6n1jyyryhm9zpn8wwgzfac1zgbjdjzrm00qcwc17r8x2hf";
};
buildInputs = [
pkgs.zlib
pkgs.pkg-config-unwrapped
pkgs.ocamlPackages.ppx_deriving
pkgs.ocamlPackages.ppx_deriving_yojson
pkgs.ocamlPackages.ppx_sexp_conv
pkgs.ocamlPackages.ppx_jane
pkgs.ocamlPackages.ppx_expect
pkgs.ocamlPackages.dune-configurator
pkgs.ocamlPackages.lwt
pkgs.ocamlPackages.parany
pkgs.ocamlPackages.patience_diff
pkgs.ocamlPackages.core
pkgs.ocamlPackages.toml
pkgs.ocamlPackages.shell
pkgs.ocamlPackages.cohttp-lwt-unix
pkgs.ocamlPackages.mparser
pkgs.ocamlPackages.opium
pkgs.ocamlPackages.textutils
pkgs.ocamlPackages.jst-config
pkgs.ocamlPackages.shell
];
buildPhase = "dune build";
}
| 15:21:45 |
hexa | The highlighting is awesome, it shows you added pkgs.ocamlPackages.shell twice :D | 15:22:37 |
ajs124 | In reply to @hexa:lossy.network The highlighting is awesome, it shows you added pkgs.ocamlPackages.shell twice :D it also parses that as a url? | 15:38:20 |
Sandro | it should because .shell is a valid tld | 15:39:11 |
hexa | // shell : 2015-07-30 Shell Information Technology International Inc
shell
| 15:39:41 |
hexa | https://publicsuffix.org/list/public_suffix_list.dat | 15:39:50 |
Linux Hackerman | oh I thought it was for shell companies | 15:40:02 |
hexa | worse, oil companies. | 15:40:28 |
andi- | Do we have documentation on the RFC42 settings stuff and how those new helper functions are supposed to be used? | 15:41:03 |
hoverbear | Hey Linux Hackerman ! I've been poking at trying to make an l2xk platform in https://github.com/Hoverbear-Consulting/flake/commit/9e696288227f1921f6c8a79f9636a0b1099d5246#diff-0d24c47df30951f8da428b919ee5a04b0e5725de7b8c133ea7ff6d5a6804d498 but I'm not seeing it work, any ideas what I might be doing wrong? | 15:41:20 |
| sterni (xmpp) joined the room. | 15:41:27 |
| sterni (xmpp) left the room. | 15:41:28 |
| sterni (xmpp) joined the room. | 15:41:29 |
| sterni (xmpp) changed their display name from sterni to sternenseemann. | 15:41:38 |
| sterni (xmpp) changed their display name from sternenseemann to sterni (xmpp). | 15:41:39 |
hexa | @sephi: Can you try to add a code fence with nix formatting to see if that fixes it? | 15:42:03 |
Linux Hackerman | hoverbear: yeah I saw and I'm following it with great interest but unfortunately I know very little on that topic :/ | 15:42:08 |
hexa | * sephi: Can you try to add a code fence with nix formatting to see if that fixes it? | 15:42:19 |
hoverbear | In reply to @linus.heckemann:matrix.mayflower.de hoverbear: yeah I saw and I'm following it with great interest but unfortunately I know very little on that topic :/ Ahhh ok I'll keep poking at it. :) Seems to be no-op'ing right now | 15:42:24 |
Linux Hackerman | hoverbear: also you may want to join #nixos-on-arm:nixos.org :) | 15:43:52 |
hoverbear | DOne! | 15:44:37 |
sephi | hexa: Sandro did that before and it was also interpreted as a link (https://matrix.to/#/!kjdutkOsheZdjqYmqp:nixos.org/$81HjgENRDmBNkpNg_PZWJCtMtgIpQCZZlfCqinaJBLI?via=matrix.org&via=systemli.org&via=matrix.nice.sampler.fi) | 15:49:24 |
| sterni (xmpp) left the room. | 15:51:54 |
Sandro | could be a bug that links in code blocks are highlighted | 15:53:23 |
hexa | sephi: Sandro | 15:54:05 |
hexa | * sephi: Sandro https://github.com/vector-im/element-web/issues/9613 | 15:54:09 |
sephi | Good, now my non-working code is famous ^^ | 15:57:05 |
Sandro | In reply to @sephi:matrix.org Good, now my non-working code is famous ^^ at least it isn't on stackoverflow yet | 16:07:03 |