Files
ccpkgs/pkgs/gsort/default.nix
2019-11-07 17:26:34 -05:00

25 lines
668 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 stdenv.lib; {
homepage = https://github.com/brentp/gsort;
description = "A tool to sort genomic files according to a genomefile.";
platforms = platforms.all;
license = licenses.mit;
};
}