File: shell.nix

package info (click to toggle)
balboa 2.0.0%2Bds-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,344 kB
  • sloc: ansic: 10,581; makefile: 160; python: 127; sh: 60
file content (10 lines) | stat: -rw-r--r-- 231 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10

{ pkgs ? import <nixpkgs> {} }: let 
    #rocksdb = pkgs.callPackage ./lib/rocksdb.nix {};
in
  pkgs.mkShell {
    shellHook = ''
       export GOPATH=${toString ./.}/go
    '';
    buildInputs = with pkgs; [ git go go2nix ];
  }