Skip to content

Instantly share code, notes, and snippets.

@trane
Created March 11, 2016 01:18
Show Gist options
  • Save trane/785edaea69390b5c0c48 to your computer and use it in GitHub Desktop.
Save trane/785edaea69390b5c0c48 to your computer and use it in GitHub Desktop.
{ pkgs ? import <nixpkgs> {}
, lookout ? import <lookout> {}
, ... }:
let
inherit (pkgs) stdenv nixops jq git which bash curl ruby_1_9 maven redis procps;
inherit (pkgs.haskellPackages) ShellCheck;
inherit (lookout) jruby1_7_22;
in
stdenv.mkDerivation {
name = "micropush-ci";
buildInputs = [
ruby_1_9
maven
jruby1_7_22
curl
nixops
jq
git
ShellCheck
bash
which
redis
procps # pkill, pgrep, et al
];
LD_LIBRARY_PATH = with stdenv; "${cc.cc}/lib";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment