gsort: Initial packaging

This commit is contained in:
Tyson Whitehead
2019-11-07 17:26:34 -05:00
parent 05a704f989
commit ded9f94444
3 changed files with 74 additions and 0 deletions

24
pkgs/gsort/default.nix Normal file
View File

@@ -0,0 +1,24 @@
# 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;
};
}