mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
wego: extracted from goPackages
This commit is contained in:
parent
d010d39e15
commit
17770101b5
20
pkgs/applications/misc/wego/default.nix
Normal file
20
pkgs/applications/misc/wego/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
# This file was generated by go2nix.
|
||||
{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:
|
||||
|
||||
with goPackages;
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "wego-${version}";
|
||||
version = "20160407-${stdenv.lib.strings.substring 0 7 rev}";
|
||||
rev = "81d72ffd761f032fbd73dba4f94bd94c8c2d53d5";
|
||||
|
||||
goPackagePath = "github.com/schachmat/wego";
|
||||
|
||||
src = fetchgit {
|
||||
inherit rev;
|
||||
url = "https://github.com/schachmat/wego";
|
||||
sha256 = "14p3hvv82bsxqnbnzz8hjv75i39kzg154a132n6cdxx3vgw76gck";
|
||||
};
|
||||
|
||||
goDeps = ./deps.json;
|
||||
}
|
10
pkgs/applications/misc/wego/deps.json
Normal file
10
pkgs/applications/misc/wego/deps.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
[
|
||||
{
|
||||
"include": "../../libs.json",
|
||||
"packages": [
|
||||
"github.com/mattn/go-colorable",
|
||||
"github.com/mattn/go-runewidth",
|
||||
"github.com/schachmat/ingo"
|
||||
]
|
||||
}
|
||||
]
|
|
@ -466,5 +466,14 @@
|
|||
"rev": "406e5b7bfd8201a36e2bb5f7bdae0b03380c2ce8",
|
||||
"sha256": "0yla9hz15pg63394ygs9iiwzsqyv29labl8p424hijwsc9z9nka8"
|
||||
}
|
||||
},
|
||||
{
|
||||
"goPackagePath": "github.com/schachmat/ingo",
|
||||
"fetch": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/schachmat/ingo",
|
||||
"rev": "fab41e4e62cbef5d92998746ec25f7e195100f38",
|
||||
"sha256": "04yfnch7pdabjjqfl2qxjmsaknvp4m1rbjlv8qrpmnqwjkxzx0hb"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -3714,7 +3714,7 @@ in
|
|||
|
||||
weather = callPackage ../applications/misc/weather { };
|
||||
|
||||
wego = goPackages.wego.bin // { outputs = [ "bin" ]; };
|
||||
wego = (callPackage ../applications/misc/wego { }).bin;
|
||||
|
||||
wal_e = callPackage ../tools/backup/wal-e { };
|
||||
|
||||
|
|
|
@ -4008,15 +4008,6 @@ let
|
|||
propagatedBuildInputs = [ ];
|
||||
};
|
||||
|
||||
wego = buildFromGitHub rec {
|
||||
rev = "81d72ffd761f032fbd73dba4f94bd94c8c2d53d5";
|
||||
version = "2016-04-07";
|
||||
owner = "schachmat";
|
||||
repo = "wego";
|
||||
sha256 = "14p3hvv82bsxqnbnzz8hjv75i39kzg154a132n6cdxx3vgw76gck";
|
||||
propagatedBuildInputs = [ go-colorable mattn.go-runewidth ingo ];
|
||||
};
|
||||
|
||||
textql = buildFromGitHub rec {
|
||||
rev = "1785cd353c68aa34f97627143b9c2908dfd4ea04";
|
||||
version = "2.0.3";
|
||||
|
|
Loading…
Reference in a new issue