asciinema: top level pkgs extracted from goPackages
This commit is contained in:
parent
81f3092e11
commit
dfe1064b4e
3 changed files with 20 additions and 8 deletions
19
pkgs/tools/misc/asciinema/default.nix
Normal file
19
pkgs/tools/misc/asciinema/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# This file was generated by go2nix.
|
||||||
|
{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:
|
||||||
|
|
||||||
|
with goPackages;
|
||||||
|
|
||||||
|
buildGoPackage rec {
|
||||||
|
name = "asciinema-${version}";
|
||||||
|
version = "20160520-${stdenv.lib.strings.substring 0 7 rev}";
|
||||||
|
rev = "6683bdaa263d0ce3645b87fe54aa87276b89988a";
|
||||||
|
|
||||||
|
|
||||||
|
goPackagePath = "github.com/asciinema/asciinema";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
inherit rev;
|
||||||
|
url = "https://github.com/asciinema/asciinema";
|
||||||
|
sha256 = "08jyvnjpd5jdgyvkly9fswac4p10bqim5v4rhmivpg4y8pbcmxkz";
|
||||||
|
};
|
||||||
|
}
|
|
@ -446,7 +446,7 @@ in
|
||||||
|
|
||||||
ascii = callPackage ../tools/text/ascii { };
|
ascii = callPackage ../tools/text/ascii { };
|
||||||
|
|
||||||
asciinema = goPackages.asciinema.bin // { outputs = [ "bin" ]; };
|
asciinema = (callPackage ../tools/misc/asciinema {}).bin;
|
||||||
|
|
||||||
asymptote = callPackage ../tools/graphics/asymptote {
|
asymptote = callPackage ../tools/graphics/asymptote {
|
||||||
texLive = texlive.combine { inherit (texlive) scheme-small epsf cm-super; };
|
texLive = texlive.combine { inherit (texlive) scheme-small epsf cm-super; };
|
||||||
|
|
|
@ -250,13 +250,6 @@ let
|
||||||
sha256 = "0b38mrfm3rwgdi7hrp4gjhf0y0f6bw73qjkfrkafxjrdpdg7nyly";
|
sha256 = "0b38mrfm3rwgdi7hrp4gjhf0y0f6bw73qjkfrkafxjrdpdg7nyly";
|
||||||
};
|
};
|
||||||
|
|
||||||
asciinema = buildFromGitHub {
|
|
||||||
rev = "v1.2.0";
|
|
||||||
owner = "asciinema";
|
|
||||||
repo = "asciinema";
|
|
||||||
sha256 = "0wvrq92ackhfycfs1fircs8al3ji69igqqrc55ic29wbpnvz355x";
|
|
||||||
};
|
|
||||||
|
|
||||||
asmfmt = buildFromGitHub {
|
asmfmt = buildFromGitHub {
|
||||||
rev = "7971758b0c6584f67d745c62d006814ae7b44e9d";
|
rev = "7971758b0c6584f67d745c62d006814ae7b44e9d";
|
||||||
owner = "klauspost";
|
owner = "klauspost";
|
||||||
|
|
Loading…
Reference in a new issue