I hereby claim:
- I am pierrer on github.
- I am pradermecker (https://keybase.io/pradermecker) on keybase.
- I have a public key whose fingerprint is 2BF3 EF75 B32C E7BB 67C9 DC7C A6D1 96A3 4E3E 5530
To claim this, I am signing this object:
| { mkDerivation, aeson, ascii-progress, async, base | |
| , concurrent-output, dhall, directory, filepath, haskeline, lens | |
| , neat-interpolation, optparse-applicative, prettyprinter | |
| , prettyprinter-ansi-terminal, process, protolude, raw-strings-qq | |
| , req, stdenv, tasty, tasty-discover, tasty-golden, tasty-hunit | |
| , text, transformers, turtle | |
| }: | |
| mkDerivation { | |
| pname = "cicd-shell"; | |
| version = "2.7.1"; |
| { config, lib, pkgs, ... }: | |
| with lib; | |
| let | |
| cfg = config.profiles.doc; | |
| homeDir = config.home.homeDirectory; | |
| in | |
| { | |
| options = { |
| let | |
| sources = import ../nix/sources.nix; | |
| overlay = self: super: { | |
| haskellPackages = super.haskellPackages.override { | |
| overrides = self: super: { | |
| language-puppet = import ./language-puppet.nix { }; | |
| unit-test = self.callPackage ./unit-test.nix {}; | |
| }; | |
| }; | |
| }; |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import "fmt" | |
| type score struct { | |
| points int | |
| } | |
| type frame struct { | |
| scores []score |