lol

leaps v0.5.0 init

+38
+25
pkgs/development/tools/leaps/default.nix
··· 1 + { stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: 2 + 3 + buildGoPackage rec { 4 + name = "leaps-${version}"; 5 + version = "20160626-${stdenv.lib.strings.substring 0 7 rev}"; 6 + rev = "5cf7328a8c498041d2a887e89f22f138498f4621"; 7 + 8 + goPackagePath = "github.com/jeffail/leaps"; 9 + 10 + src = fetchgit { 11 + inherit rev; 12 + url = "https://github.com/jeffail/leaps"; 13 + sha256 = "1qbgz48x9yi0w9yz39zsnnhx5nx2xmrns9v8hx28jah2bvag6sq7"; 14 + fetchSubmodules = false; 15 + }; 16 + 17 + goDeps = ./deps.json; 18 + meta = { 19 + description = "A pair programming tool and library written in Golang"; 20 + homepage = "https://github.com/jeffail/leaps/"; 21 + license = "MIT"; 22 + maintainers = with stdenv.lib.maintainers; [ qknight ]; 23 + meta.platforms = stdenv.lib.platforms.linux; 24 + }; 25 + }
+11
pkgs/development/tools/leaps/deps.json
··· 1 + [ 2 + { 3 + "goPackagePath": "golang.org/x/net", 4 + "fetch": { 5 + "type": "git", 6 + "url": "https://go.googlesource.com/net", 7 + "rev": "07b51741c1d6423d4a6abab1c49940ec09cb1aaf", 8 + "sha256": "12lvdj0k2gww4hw5f79qb9yswqpy4i3bgv1likmf3mllgdxfm20w" 9 + } 10 + } 11 + ]
+2
pkgs/top-level/all-packages.nix
··· 9987 9987 9988 9988 go2nix = callPackage ../development/tools/go2nix { }; 9989 9989 9990 + leaps = callPackage ../development/tools/leaps { }; 9991 + 9990 9992 ### DEVELOPMENT / LISP MODULES 9991 9993 9992 9994 asdf = callPackage ../development/lisp-modules/asdf {