mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
reftools: init at unstable 2018-09-14
This commit is contained in:
parent
6d7413e54a
commit
f6e78e49fa
29
pkgs/development/tools/reftools/default.nix
Normal file
29
pkgs/development/tools/reftools/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ buildGoPackage
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "reftools-unstable-${version}";
|
||||
version = "2018-09-14";
|
||||
rev = "654d0ba4f96d62286ca33cd46f7674b84f76d399";
|
||||
|
||||
goPackagePath = "github.com/davidrjenni/reftools";
|
||||
excludedPackages = "\\(cmd/fillswitch/test-fixtures\\)";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
|
||||
owner = "davidrjenni";
|
||||
repo = "reftools";
|
||||
sha256 = "12y2h1h15xadc8pa3xsj11hpdxz5dss6k7xaa4h1ifkvnasjp5w2";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "reftools - refactoring tools for Go";
|
||||
homepage = https://github.com/davidrjenni/reftools;
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
@ -5095,6 +5095,8 @@ with pkgs;
|
||||
|
||||
recoverjpeg = callPackage ../tools/misc/recoverjpeg { };
|
||||
|
||||
reftools = callPackage ../development/tools/reftools { };
|
||||
|
||||
reposurgeon = callPackage ../applications/version-management/reposurgeon { };
|
||||
|
||||
reptyr = callPackage ../os-specific/linux/reptyr {};
|
||||
|
Loading…
Reference in New Issue
Block a user