tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
asciinema: top level pkgs extracted from goPackages
Kamil Chmielewski
9 years ago
dfe1064b
81f3092e
+20
-8
3 changed files
expand all
collapse all
unified
split
pkgs
tools
misc
asciinema
default.nix
top-level
all-packages.nix
go-packages.nix
+19
pkgs/tools/misc/asciinema/default.nix
···
1
1
+
# This file was generated by go2nix.
2
2
+
{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:
3
3
+
4
4
+
with goPackages;
5
5
+
6
6
+
buildGoPackage rec {
7
7
+
name = "asciinema-${version}";
8
8
+
version = "20160520-${stdenv.lib.strings.substring 0 7 rev}";
9
9
+
rev = "6683bdaa263d0ce3645b87fe54aa87276b89988a";
10
10
+
11
11
+
12
12
+
goPackagePath = "github.com/asciinema/asciinema";
13
13
+
14
14
+
src = fetchgit {
15
15
+
inherit rev;
16
16
+
url = "https://github.com/asciinema/asciinema";
17
17
+
sha256 = "08jyvnjpd5jdgyvkly9fswac4p10bqim5v4rhmivpg4y8pbcmxkz";
18
18
+
};
19
19
+
}
+1
-1
pkgs/top-level/all-packages.nix
···
446
446
447
447
ascii = callPackage ../tools/text/ascii { };
448
448
449
449
-
asciinema = goPackages.asciinema.bin // { outputs = [ "bin" ]; };
449
449
+
asciinema = (callPackage ../tools/misc/asciinema {}).bin;
450
450
451
451
asymptote = callPackage ../tools/graphics/asymptote {
452
452
texLive = texlive.combine { inherit (texlive) scheme-small epsf cm-super; };
-7
pkgs/top-level/go-packages.nix
···
250
250
sha256 = "0b38mrfm3rwgdi7hrp4gjhf0y0f6bw73qjkfrkafxjrdpdg7nyly";
251
251
};
252
252
253
253
-
asciinema = buildFromGitHub {
254
254
-
rev = "v1.2.0";
255
255
-
owner = "asciinema";
256
256
-
repo = "asciinema";
257
257
-
sha256 = "0wvrq92ackhfycfs1fircs8al3ji69igqqrc55ic29wbpnvz355x";
258
258
-
};
259
259
-
260
253
asmfmt = buildFromGitHub {
261
254
rev = "7971758b0c6584f67d745c62d006814ae7b44e9d";
262
255
owner = "klauspost";