Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

reftools: init at unstable 2018-09-14

+31
+29
pkgs/development/tools/reftools/default.nix
··· 1 + { buildGoPackage 2 + , lib 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoPackage rec { 7 + name = "reftools-unstable-${version}"; 8 + version = "2018-09-14"; 9 + rev = "654d0ba4f96d62286ca33cd46f7674b84f76d399"; 10 + 11 + goPackagePath = "github.com/davidrjenni/reftools"; 12 + excludedPackages = "\\(cmd/fillswitch/test-fixtures\\)"; 13 + 14 + src = fetchFromGitHub { 15 + inherit rev; 16 + 17 + owner = "davidrjenni"; 18 + repo = "reftools"; 19 + sha256 = "12y2h1h15xadc8pa3xsj11hpdxz5dss6k7xaa4h1ifkvnasjp5w2"; 20 + }; 21 + 22 + meta = with lib; { 23 + description = "reftools - refactoring tools for Go"; 24 + homepage = https://github.com/davidrjenni/reftools; 25 + license = licenses.bsd2; 26 + maintainers = with maintainers; [ kalbasit ]; 27 + platforms = platforms.linux ++ platforms.darwin; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 5095 5095 5096 5096 recoverjpeg = callPackage ../tools/misc/recoverjpeg { }; 5097 5097 5098 + reftools = callPackage ../development/tools/reftools { }; 5099 + 5098 5100 reposurgeon = callPackage ../applications/version-management/reposurgeon { }; 5099 5101 5100 5102 reptyr = callPackage ../os-specific/linux/reptyr {};