tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
unconvert: init at unstable 2018-07-03
Wael M. Nasreddine
7 years ago
63d98633
df46a94d
+62
3 changed files
expand all
collapse all
unified
split
pkgs
development
tools
unconvert
default.nix
deps.nix
top-level
all-packages.nix
+31
pkgs/development/tools/unconvert/default.nix
···
1
1
+
2
2
+
{ buildGoPackage
3
3
+
, lib
4
4
+
, fetchFromGitHub
5
5
+
}:
6
6
+
7
7
+
buildGoPackage rec {
8
8
+
name = "unconvert-unstable-${version}";
9
9
+
version = "2018-07-03";
10
10
+
rev = "1a9a0a0a3594e9363e49545fb6a4e24ac4c68b7b";
11
11
+
12
12
+
goPackagePath = "github.com/mdempsky/unconvert";
13
13
+
14
14
+
src = fetchFromGitHub {
15
15
+
inherit rev;
16
16
+
17
17
+
owner = "mdempsky";
18
18
+
repo = "unconvert";
19
19
+
sha256 = "1ww5qk1cmdis4ig5mb0b0w7nzrf3734s51plmgdxqsr35y88q4p9";
20
20
+
};
21
21
+
22
22
+
goDeps = ./deps.nix;
23
23
+
24
24
+
meta = with lib; {
25
25
+
description = "Remove unnecessary type conversions from Go source";
26
26
+
homepage = https://github.com/mdempsky/unconvert;
27
27
+
license = licenses.bsd3;
28
28
+
maintainers = with maintainers; [ kalbasit ];
29
29
+
platforms = platforms.linux ++ platforms.darwin;
30
30
+
};
31
31
+
}
+29
pkgs/development/tools/unconvert/deps.nix
···
1
1
+
[
2
2
+
{
3
3
+
goPackagePath = "github.com/kisielk/gotool";
4
4
+
fetch = {
5
5
+
type = "git";
6
6
+
url = "https://github.com/kisielk/gotool";
7
7
+
rev = "80517062f582ea3340cd4baf70e86d539ae7d84d";
8
8
+
sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn";
9
9
+
};
10
10
+
}
11
11
+
{
12
12
+
goPackagePath = "golang.org/x/text";
13
13
+
fetch = {
14
14
+
type = "git";
15
15
+
url = "https://go.googlesource.com/text";
16
16
+
rev = "6f44c5a2ea40ee3593d98cdcc905cc1fdaa660e2";
17
17
+
sha256 = "00mwzxly5isgf0glz7k3k2dkyqkjfc4z55qxajx4lgcp3h8xn9xj";
18
18
+
};
19
19
+
}
20
20
+
{
21
21
+
goPackagePath = "golang.org/x/tools";
22
22
+
fetch = {
23
23
+
type = "git";
24
24
+
url = "https://go.googlesource.com/tools";
25
25
+
rev = "96e9e165b75e735822645eff82850b08c377be36";
26
26
+
sha256 = "1zj9ck5sg9b0pphxybmvxf64hhcap7v7j37fx3v5aknf18crjjdg";
27
27
+
};
28
28
+
}
29
29
+
]
+2
pkgs/top-level/all-packages.nix
···
12535
12535
vala = vala_0_40;
12536
12536
};
12537
12537
12538
12538
+
unconvert = callPackage ../development/tools/unconvert { };
12539
12539
+
12538
12540
unibilium = callPackage ../development/libraries/unibilium { };
12539
12541
12540
12542
unicap = callPackage ../development/libraries/unicap {};