Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.nix - github.com/ambrop72/badvpn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8589ea2b37649a5ee5917ae191e785843cfab513 (plain)
1
2
3
4
5
6
7
{ pkgs ? (import <nixpkgs> {}) }:
with pkgs;
rec {
    badvpnFunc = import ./badvpn.nix;
    badvpn = pkgs.callPackage badvpnFunc {};
    badvpnDebug = pkgs.callPackage badvpnFunc { debug = true; };
}