about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/gup/default.nix
blob: 79e391a858955a26771e01a5d5339c458dce8c33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchFromGitHub, lib, python, which }:
let
  version = "0.6.0";
  src = fetchFromGitHub {
    sha256 = "053xnx39jh9kn9l572z4k0q7bbxjpisf1fm9aq27ybj2ha1rh6wr";
    rev = "version-${version}";
    repo = "gup";
    owner = "timbertson";
  };
in
import ./build.nix
  { inherit stdenv lib python which; }
  { inherit src version;
    meta = {
      inherit (src.meta) homepage;
      description = "A better make, inspired by djb's redo";
      license = stdenv.lib.licenses.lgpl2Plus;
      maintainers = [ stdenv.lib.maintainers.timbertson ];
      platforms = stdenv.lib.platforms.all;
    };
  }