This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with import <nixpkgs>{}; | |
let | |
version = "1.20.5"; | |
rpath = stdenv.lib.makeLibraryPath [ | |
alsaLib | |
atk | |
cairo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Qwerty | |
* ,-----------------------------------------------------------------------------------. | |
* | Esc | Q | W | E | R | T | Y | U | I | O | P | Bksp | | |
* |------+------+------+------+------+------+------+------+------+------+------+------| | |
* | Tab | A | S | D | F | G | H | J | K | L | ; |Enter | | |
* |------+------+------+------+------+------+------+------+------+------+------+------| | |
* |RGUI | Z | X | C | V | B | N | M | , | . | / |Shift | | |
* |------+------+------+------+------+------+------+------+------+------+------+------| | |
* | Ctrl | Hyper| Alt | GUI |Lower | Space |Raise | Left | Down | Up |Right | | |
* `-----------------------------------------------------------------------------------' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
elmOpts :: Maybe String -> ElmOptions | |
elmOpts target = do | |
case target of | |
Just our_target -> | |
defElmOptions { urlPrefix = Static "http://prod.dev" } | |
_ -> | |
defElmOptions { urlPrefix = Static "http://localhost:3000" } | |
specs :: ElmOptions -> [Spec] | |
specs elmopts = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add nice functions to deal with roles | |
module Stencilable | |
extend ActiveSupport::Concern | |
extend Forwardable | |
def_delegators :@stencil, *stencil_caca(self).stenciled_methods | |
def stencil_caca(org = nil) | |
Black::ThirdParty::StencilFactory.get_class( | |
org.provider, | |
self.class.name.demodulize |