mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 22:06:00 +03:00
alibuild: init at 1.5.3
This commit is contained in:
parent
9e0cb36d18
commit
d895f47d68
27
pkgs/development/tools/build-managers/alibuild/default.nix
Normal file
27
pkgs/development/tools/build-managers/alibuild/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, lib, python}:
|
||||||
|
|
||||||
|
python.pkgs.buildPythonApplication rec {
|
||||||
|
pname = "alibuild";
|
||||||
|
version = "1.5.4rc3";
|
||||||
|
|
||||||
|
src = python.pkgs.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1mnh0h9m96p78b9ln1gbl4lw1mgl16qbyfi9fj2l13p3nxaq1sib";
|
||||||
|
};
|
||||||
|
|
||||||
|
argparse = null;
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
python.pkgs.requests
|
||||||
|
python.pkgs.argparse
|
||||||
|
python.pkgs.pyyaml
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://alisw.github.io/alibuild/";
|
||||||
|
description = "Build tool for ALICE experiment software";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ ktf ];
|
||||||
|
};
|
||||||
|
}
|
@ -22247,4 +22247,8 @@ with pkgs;
|
|||||||
doing = callPackage ../applications/misc/doing { };
|
doing = callPackage ../applications/misc/doing { };
|
||||||
|
|
||||||
undervolt = callPackage ../os-specific/linux/undervolt { };
|
undervolt = callPackage ../os-specific/linux/undervolt { };
|
||||||
|
|
||||||
|
alibuild = callPackage ../development/tools/build-managers/alibuild {
|
||||||
|
python = python27;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user