nix
Here are 841 public repositories matching this topic...
-
Updated
Oct 10, 2020 - C++
-
Updated
Oct 2, 2020 - Haskell
Affected part of DeckDeckGo
- Studio
Feature Description
In addition to the editor, "studio" also contains a feature which let attendees vote for a poll.
In order to let your attendees vote multiple times for the same poll, the poll key is saved in indexedb and a user can't vote for the same key for two hours.
This works fine but I notice
-
Updated
Jul 25, 2020 - Go
-
Updated
Apr 19, 2019 - Racket
-
Updated
Aug 23, 2020 - Nix
fetchPypi just calls fetchurl underneath but has a slightly different calling syntax in order to construct the URL. It would be great to track these external dependencies using niv. :-)
-
Updated
Oct 11, 2020 - Rust
-
Updated
Oct 5, 2020 - Nix
-
Updated
Sep 12, 2020 - Nix
-
Updated
Oct 6, 2020 - Nix
Otherwise one might get an error like:
cachix push /nix/store/7i1kqf6x52l1fhqqdmqgggjr0zigggik-cachix-0.1.3/bin/cachix
NoInput "You need to specify store paths either as stdin or as a cli argument"
Currently, we are not able to
a) symbolically execute init code with symbolic arguments
b) get srcmapping for init code with arguments
We could change ContractCode as follows:
data ContractCode
= InitCode (ByteString, Buffer) -- ^ "Constructor" code, during contract creation (possibly with arguments)
| RuntimeCode ByteString -- ^ "Instance" code, after contract crea
It would be nice to have an easy way of installing bash completions from optparse-applicative.
We've added a small post install script to our own CLI tools with a module like the following:
{pkgs, ...}:
{
packages.our-pkg-one.components.exes.our-exe-one.build-tools = [ pkgs.installShellFiles ];
packages.our-pkg-one.components.all.postInstall = pkgs.lib.mkForce "";
pac-
Updated
Oct 4, 2020 - Nix
-
Updated
Oct 2, 2020 - Jupyter Notebook
Improve this page
Add a description, image, and links to the nix topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the nix topic, visit your repo's landing page and select "manage topics."
Currently the IHP Sessions Functions only really work well with
Textvalues. When you want to store other values likeFloatorByteStringorId Projectyou always have to first convert them to a text and then later manually convert them back.For a few cases we manually added functions such as
getSessionIntorgetSessionUUID. We should try to generalize this by introducing a type cl