Compare commits

...

2 Commits

Author SHA1 Message Date
8019407c69 Import lib in changed files 2023-05-23 14:28:32 -04:00
016a641c38 stdenv.lib -> lib 2023-05-23 14:24:16 -04:00
19 changed files with 38 additions and 38 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub { stdenv, lib, fetchFromGitHub
, jdk, ant, makeWrapper , jdk, ant, makeWrapper
, jre, perl }: , jre, perl }:
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
makeWrapper $out/share/FastQC/fastqc $out/bin/fastqc --add-flags --java=${jre}/bin/java makeWrapper $out/share/FastQC/fastqc $out/bin/fastqc --add-flags --java=${jre}/bin/java
''; '';
meta = with stdenv.lib; { meta = with lib; {
homepage = https://www.bioinformatics.babraham.ac.uk/projects/fastqc/; homepage = https://www.bioinformatics.babraham.ac.uk/projects/fastqc/;
description = "A quality control tool for high throughput sequence data"; description = "A quality control tool for high throughput sequence data";
longDescription = '' longDescription = ''

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, gfortran { stdenv, lib, fetchurl, cmake, gfortran
, netcdf, hdf5 }: , netcdf, hdf5 }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
patches = ./exodus-include.patch; patches = ./exodus-include.patch;
sourceRoot = "${name}/exodus"; sourceRoot = "${name}/exodus";
meta = with stdenv.lib; { meta = with lib; {
homepage = "http://gsjaardema.github.io/seacas"; homepage = "http://gsjaardema.github.io/seacas";
description = "A model developed to store and retrieve data for finite element analyses."; description = "A model developed to store and retrieve data for finite element analyses.";
license = licenses.bsd3; license = licenses.bsd3;

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake { stdenv, lib, fetchFromGitHub, cmake
, openmpi }: , openmpi }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
makeFlags = [ "VERBOSE=1" ]; makeFlags = [ "VERBOSE=1" ];
meta = with stdenv.lib; { meta = with lib; {
homepage = "http://www.llnl.gov/casc/hypre"; homepage = "http://www.llnl.gov/casc/hypre";
description = "Parallel solvers for sparse linear systems featuring multigrid methods."; description = "Parallel solvers for sparse linear systems featuring multigrid methods.";
license = licenses.gpl2; license = licenses.gpl2;

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromBitbucket, cmake }: { stdenv, lib, fetchFromBitbucket, cmake }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "5.1.0-p4"; version = "5.1.0-p4";
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
makeFlags = [ "VERBOSE=1" ]; makeFlags = [ "VERBOSE=1" ];
meta = with stdenv.lib; { meta = with lib; {
homepage = "https://bitbucket.org/petsc/metis"; homepage = "https://bitbucket.org/petsc/metis";
description = "A set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices."; description = "A set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices.";
}; };

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromBitbucket, cmake { stdenv, lib, fetchFromBitbucket, cmake
, openmpi , openmpi
, metis }: , metis }:
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
cmakeFlags = [ "-DGKLIB_PATH=../headers" ]; cmakeFlags = [ "-DGKLIB_PATH=../headers" ];
makeFlags = [ "VERBOSE=1" ]; makeFlags = [ "VERBOSE=1" ];
meta = with stdenv.lib; { meta = with lib; {
homepage = "http://glaros.dtc.umn.edu/gkhome/metis/parmetis"; homepage = "http://glaros.dtc.umn.edu/gkhome/metis/parmetis";
description = "An MPI-based parallel library that implements a variety of algorithms for partitioning unstructured graphs, meshes, and for computing fill-reducing orderings of sparse matrices."; description = "An MPI-based parallel library that implements a variety of algorithms for partitioning unstructured graphs, meshes, and for computing fill-reducing orderings of sparse matrices.";
}; };

View File

@@ -1,4 +1,4 @@
{ stdenv, callPackage, writeText, fetchFromGitHub, python, gfortran { stdenv, lib, callPackage, writeText, fetchFromGitHub, python, gfortran
, openmpi, blas, liblapack, hdf5, netcdf, eigen , openmpi, blas, liblapack, hdf5, netcdf, eigen
, sowing, metis, hypre, parmetis, exodus }: , sowing, metis, hypre, parmetis, exodus }:
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
setupHook = writeText "setupHook.sh" "export PETSC_DIR=@out@"; setupHook = writeText "setupHook.sh" "export PETSC_DIR=@out@";
meta = with stdenv.lib; { meta = with lib; {
homepage = "https://github.com/firedrakeproject/petsc"; homepage = "https://github.com/firedrakeproject/petsc";
description = "A suite of data structures and routines for the scalable (parallel) solution of scientific applications modeled by partial differential equations."; description = "A suite of data structures and routines for the scalable (parallel) solution of scientific applications modeled by partial differential equations.";
license = licenses.bsd2; license = licenses.bsd2;

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromBitbucket, ghostscript }: { stdenv, lib, fetchFromBitbucket, ghostscript }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.1.25-p1"; version = "1.1.25-p1";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
ghostscript ghostscript
]; ];
meta = with stdenv.lib; { meta = with lib; {
homepage = "https://bitbucket.org/petsc/pkg-sowing"; homepage = "https://bitbucket.org/petsc/pkg-sowing";
description = "Tools that are part of the petsc program development and maintenance environment."; description = "Tools that are part of the petsc program development and maintenance environment.";
}; };

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchsvn, autoreconfHook, pkg-config { stdenv, lib, fetchsvn, autoreconfHook, pkg-config
, libxml2, python2Packages, swig }: , libxml2, python2Packages, swig }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ]; hardeningDisable = [ "format" ];
meta = with stdenv.lib; { meta = with lib; {
description = "The General Hidden Markov Model library (GHMM) is a freely available C library implementing efficient data structures and algorithms for basic and extended HMMs with discrete and continous emissions."; description = "The General Hidden Markov Model library (GHMM) is a freely available C library implementing efficient data structures and algorithms for basic and extended HMMs with discrete and continous emissions.";
homepage = http://ghmm.sourceforge.net; homepage = http://ghmm.sourceforge.net;
platforms = platforms.all; platforms = platforms.all;

View File

@@ -1,5 +1,5 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.3.0 # This file was generated by https://github.com/kamilchm/go2nix v1.3.0
{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: { stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
buildGoPackage rec { buildGoPackage rec {
name = "gsort-${version}"; name = "gsort-${version}";
@@ -15,7 +15,7 @@ buildGoPackage rec {
goDeps = ./deps.nix; goDeps = ./deps.nix;
meta = with stdenv.lib; { meta = with lib; {
homepage = https://github.com/brentp/gsort; homepage = https://github.com/brentp/gsort;
description = "A tool to sort genomic files according to a genomefile."; description = "A tool to sort genomic files according to a genomefile.";
platforms = platforms.all; platforms = platforms.all;

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl { stdenv, lib, fetchurl
, bash }: , bash }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
# stdenv # stdenv
# ]; # ];
meta = with stdenv.lib; { meta = with lib; {
homepage = https://github.com/loneknightpy/idba/; homepage = https://github.com/loneknightpy/idba/;
description = "Basic iterative de Bruijn graph assembler for second-generation sequencing reads"; description = "Basic iterative de Bruijn graph assembler for second-generation sequencing reads";
longDescription = "IDBA is the basic iterative de Bruijn graph assembler for second-generation sequencing reads. IDBA-UD, an extension of IDBA, is designed to utilize paired-end reads to assemble low-depth regions and use progressive depth on contigs to reduce errors in high-depth regions. It is a generic purpose assembler and especially good for single-cell and metagenomic sequencing data. IDBA-Hybrid is another update version of IDBA-UD, which can make use of a similar reference genome to improve assembly result. IDBA-Tran is an iterative de Bruijn graph assembler for RNA-Seq data."; longDescription = "IDBA is the basic iterative de Bruijn graph assembler for second-generation sequencing reads. IDBA-UD, an extension of IDBA, is designed to utilize paired-end reads to assemble low-depth regions and use progressive depth on contigs to reduce errors in high-depth regions. It is a generic purpose assembler and especially good for single-cell and metagenomic sequencing data. IDBA-Hybrid is another update version of IDBA-UD, which can make use of a similar reference genome to improve assembly result. IDBA-Tran is an iterative de Bruijn graph assembler for RNA-Seq data.";

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, which, autoconf, automake { stdenv, lib, fetchFromGitHub, which, autoconf, automake
, zlib, curl , zlib, curl
, python2, hexdump, sambamba, samblaster, samtools }: , python2, hexdump, sambamba, samblaster, samtools }:
@@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
samtools samtools
]; ];
meta = with stdenv.lib; { meta = with lib; {
description = "A probabilistic framework for structural variant discovery."; description = "A probabilistic framework for structural variant discovery.";
homepage = https://github.com/arq5x/lumpy-sv; homepage = https://github.com/arq5x/lumpy-sv;
platforms = platforms.all; platforms = platforms.all;

View File

@@ -1,4 +1,4 @@
{ stdenv, overrideCC, gcc49, fetchurl, makeWrapper, gzip, cmake { stdenv, lib, overrideCC, gcc49, fetchurl, makeWrapper, gzip, cmake
, boost, perl, perlPackages, gnuplot }: , boost, perl, perlPackages, gnuplot }:
# gcc 5.x c++11 requires istream to be explicitly cast to bool # gcc 5.x c++11 requires istream to be explicitly cast to bool
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
gnuplot gnuplot
]; ];
meta = with stdenv.lib; { meta = with lib; {
homepage = http://jgi.doe.gov/data-and-tools/meraculous; homepage = http://jgi.doe.gov/data-and-tools/meraculous;
description = "Meraculous is a whole genome assembler for Next Generation Sequencing data geared for large genomes."; description = "Meraculous is a whole genome assembler for Next Generation Sequencing data geared for large genomes.";
platforms = platforms.all; platforms = platforms.all;

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, fetchFromGitHub { stdenv, lib, fetchurl, fetchFromGitHub
, cmake, gfortran, python38, pkg-config , cmake, gfortran, python38, pkg-config
, openmpi, netcdf, boost }: , openmpi, netcdf, boost }:
@@ -67,7 +67,7 @@ stdenv.mkDerivation rec {
# netcdf # netcdf
]; ];
meta = with stdenv.lib; { meta = with lib; {
homepage = https://mfix.netl.doe.gov; homepage = https://mfix.netl.doe.gov;
description = "An open-source multiphase flow solver"; description = "An open-source multiphase flow solver";
platforms = platforms.all; platforms = platforms.all;

View File

@@ -1,4 +1,4 @@
{ stdenv, bashInteractive, fetchFromGitHub, makeWrapper, flex, bison { stdenv, lib, bashInteractive, fetchFromGitHub, makeWrapper, flex, bison
, zlib, boost, openmpi, readline, gperftools, cgal, metis, scotch, mpfr }: , zlib, boost, openmpi, readline, gperftools, cgal, metis, scotch, mpfr }:
@@ -84,7 +84,7 @@ stdenv.mkDerivation rec {
mpfr mpfr
]; ];
meta = with stdenv.lib; { meta = with lib; {
homepage = http://www.openfoam.com; homepage = http://www.openfoam.com;
description = "Free open-source CFD software"; description = "Free open-source CFD software";
platforms = platforms.linux; platforms = platforms.linux;

View File

@@ -1,4 +1,4 @@
{ stdenv, autoreconfHook, pkg-config, fetchFromGitHub { stdenv, lib, autoreconfHook, pkg-config, fetchFromGitHub
, zlib, openjpeg, libtiff, cairo, libpng, gdk-pixbuf, libxml2, sqlite }: , zlib, openjpeg, libtiff, cairo, libpng, gdk-pixbuf, libxml2, sqlite }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
sed -i -e 's|AM_CONDITIONAL(\[WINDOWS_RESOURCES\], \[test x$RC != x\])|AM_CONDITIONAL([WINDOWS_RESOURCES], [false])|' configure.ac sed -i -e 's|AM_CONDITIONAL(\[WINDOWS_RESOURCES\], \[test x$RC != x\])|AM_CONDITIONAL([WINDOWS_RESOURCES], [false])|' configure.ac
''; '';
meta = with stdenv.lib; { meta = with lib; {
homepage = http://openslide.org; homepage = http://openslide.org;
description = "A C library that provides a simple interface to read whole-slide images."; description = "A C library that provides a simple interface to read whole-slide images.";
platforms = platforms.all; platforms = platforms.all;

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, ldc { stdenv, lib, fetchFromGitHub, ldc
, python3, glibc, which, zlib }: , python3, glibc, which, zlib }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
zlib zlib
]; ];
meta = with stdenv.lib; { meta = with lib; {
homepage = https://github.com/lomereiter/sambamba/wiki; homepage = https://github.com/lomereiter/sambamba/wiki;
description = "Sambamba is a set of command-line tools for working with SAM/BAM file formats which are used for storing next generation sequencing (NGS) datasets."; description = "Sambamba is a set of command-line tools for working with SAM/BAM file formats which are used for storing next generation sequencing (NGS) datasets.";
platforms = platforms.all; platforms = platforms.all;

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub }: { stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "0.1.24"; version = "0.1.24";
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
buildInputs = [ ]; buildInputs = [ ];
meta = with stdenv.lib; { meta = with lib; {
description = "A fast and flexible program for marking duplicates in read-id grouped paired-end SAM files."; description = "A fast and flexible program for marking duplicates in read-id grouped paired-end SAM files.";
homepage = https://github.com/GregoryFaust/samblaster; homepage = https://github.com/GregoryFaust/samblaster;
platforms = platforms.all; platforms = platforms.all;

View File

@@ -1,5 +1,5 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.3.0 # This file was generated by https://github.com/kamilchm/go2nix v1.3.0
{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn, makeWrapper { stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn, makeWrapper
, gzip, gsort, htslib, lumpy, samtools, svtyper, mosdepth }: , gzip, gsort, htslib, lumpy, samtools, svtyper, mosdepth }:
buildGoPackage rec { buildGoPackage rec {
@@ -31,7 +31,7 @@ buildGoPackage rec {
makeWrapper makeWrapper
]; ];
meta = with stdenv.lib; { meta = with lib; {
homepage = https://github.com/brentp/smoove; homepage = https://github.com/brentp/smoove;
description = "Wrap existing software and adds some internal read-filtering to simplify calling and genotyping structural variants."; description = "Wrap existing software and adds some internal read-filtering to simplify calling and genotyping structural variants.";
platforms = platforms.all; platforms = platforms.all;

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, unzip { stdenv, lib, fetchurl, unzip
, lzma, bzip2, zlib, libjpeg, libtiff, openssl , lzma, bzip2, zlib, libjpeg, libtiff, openssl
, mesa, xorg , mesa, xorg
, fox, xercesc, proj, gdal, hdf5, curl }: , fox, xercesc, proj, gdal, hdf5, curl }:
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
curl curl
]; ];
meta = with stdenv.lib; { meta = with lib; {
homepage = http://software.dlr.de/p/sumo/home; homepage = http://software.dlr.de/p/sumo/home;
description = "SUMO is an open source, highly portable, microscopic and continuous road traffic simulation package designed to handle large road networks"; description = "SUMO is an open source, highly portable, microscopic and continuous road traffic simulation package designed to handle large road networks";
platforms = platforms.all; platforms = platforms.all;