Igor Pashev

Results 48 comments of Igor Pashev

I found simpler way to rotate the key. Simpler as in "closer to the basics" :). 1. Unlock the repository (`git-crypt unlock`). 2. Replace `.git/git-crypt/keys/default` (see below). 3. At this...

Gpg agent plus preset passphrase. You set up gpg home and pass it in environment variable. See for example https://github.com/zalora/nixsap/blob/master/modules/apps/gnupg/default.nix

I would prefer a general solution, like `--nix-build-options=foo,bar` like `-Wl,` for GCC :-)

There is the [help2man](https://www.gnu.org/software/help2man/) utility ;) Though, optparse-applicative output is not perfectly friendly to it.

> Can somebody remind me why we use the > > ``` > { package1, package2 }: > ... > buildInputs = [ > package1 > package2 > ]; >...

It includes these lines: ``` install-ghc: true system-ghc: false ```

It is fatal with https://github.com/boto/boto/issues/2262

I guess we can use ... Clojure :) ```clojure (def optimizing-compiler {:compiler {:optimizations :advanced :elide-asserts true :pretty-print false}}) (defproject com.capital-match.lending/ui "0" :description "Capital Match Web application" :url "https://www.capital-match.com" :min-lein-version "2.8.1"...

Package `crmsh-3.0.5-0.wc1.noarch`, `crm --version` prints `crm 3.0.1`. But it does not matter, because the problem is obvious in the current code.

```haskell module Main ( main ) where import Control.Lens ((.~), ()) import Control.Monad.Trans.Resource (runResourceT) import qualified Data.ByteString as BS import qualified Data.ByteString.Base64.URL as Base64URL import qualified Network.Google as Google import...