Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 849fb28cf350
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ff9a2297ac65
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 24, 2018

  1. alibuild: init at 1.5.3

    ktf committed Aug 24, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Moser-ss Stephane Moser
    Copy the full SHA
    d895f47 View commit details

Commits on Aug 28, 2018

  1. Merge pull request #45467 from ktf/init-alibuild

    alibuild: init at 1.5.3
    Mic92 authored Aug 28, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Moser-ss Stephane Moser
    Copy the full SHA
    ff9a229 View commit details
Showing with 31 additions and 0 deletions.
  1. +27 −0 pkgs/development/tools/build-managers/alibuild/default.nix
  2. +4 −0 pkgs/top-level/all-packages.nix
27 changes: 27 additions & 0 deletions pkgs/development/tools/build-managers/alibuild/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -22326,4 +22326,8 @@ with pkgs;
doing = callPackage ../applications/misc/doing { };

undervolt = callPackage ../os-specific/linux/undervolt { };

alibuild = callPackage ../development/tools/build-managers/alibuild {
python = python27;
};
}