nixpkgs/pkgs/applications/virtualization/singularity/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

27 lines
763 B
Nix

{ stdenv
, fetchFromGitHub
, autoreconfHook }:
stdenv.mkDerivation rec {
name = "singularity-${version}";
version = "2.2";
src = fetchFromGitHub {
owner = "singularityware";
repo = "singularity";
rev = version;
sha256 = "19g43gfdy5s8y4252474cp39d6ypn5dd37wp0s21fgd13vqy26px";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ ];
meta = with stdenv.lib; {
homepage = http://singularity.lbl.gov/;
description = "Designed around the notion of extreme mobility of compute and reproducible science, Singularity enables users to have full control of their operating system environment";
license = "BSD license with 2 modifications";
platforms = platforms.linux;
maintainers = [ maintainers.jbedo ];
};
}