gsort: Initial packaging
This commit is contained in:
24
pkgs/gsort/default.nix
Normal file
24
pkgs/gsort/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user