about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/gup/build.nix
blob: a9af037bb81e834310070e96b3a4a1fbe4d84d4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# NOTE: this file is copied from the upstream repository for this package.
# Please submit any changes you make here to https://github.com/timbertson/gup/

{ stdenv, lib, python, which, pychecker ? null }:
{ src, version, meta ? {} }:
stdenv.mkDerivation {
  inherit src meta;
  name = "gup-${version}";
  buildInputs = lib.remove null [ python which pychecker ];
  SKIP_PYCHECKER = pychecker == null;
  buildPhase = "make python";
  installPhase = ''
    mkdir $out
    cp -r python/bin $out/bin
  '';
}