25 lines
661 B
Nix
25 lines
661 B
Nix
# This file was generated by https://github.com/kamilchm/go2nix v1.3.0
|
|
{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
|
|
|
|
buildGoPackage rec {
|
|
name = "gsort-${version}";
|
|
version = "0.1.2";
|
|
|
|
goPackagePath = "github.com/brentp/gsort";
|
|
|
|
src = fetchgit {
|
|
rev = "v${version}";
|
|
url = "https://github.com/brentp/gsort.git";
|
|
sha256 = "1l65f8dn0d2jdk1x8bz3p03ia146rlzjflmz4rdzw8nax0kc2n6w";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
meta = with lib; {
|
|
homepage = https://github.com/brentp/gsort;
|
|
description = "A tool to sort genomic files according to a genomefile.";
|
|
platforms = platforms.all;
|
|
license = licenses.mit;
|
|
};
|
|
}
|