mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 08:34:50 +00:00
17 lines
464 B
Nix
17 lines
464 B
Nix
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
|
|
|
|
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";
|
|
};
|
|
}
|