2016-04-11 14:21:12 +00:00
|
|
|
{ stdenv, fetchFromGitHub, lib, python, which }:
|
2015-09-05 10:37:45 +00:00
|
|
|
let
|
2016-04-11 14:21:12 +00:00
|
|
|
version = "0.5.5";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
sha256 = "12yv0j333z6jkaaal8my3jx3k4ml9hq8ldis5zfvr8179d4xah7q";
|
|
|
|
rev = "version-${version}";
|
|
|
|
repo = "gup";
|
2016-04-11 14:35:18 +00:00
|
|
|
owner = "timbertson";
|
2015-09-05 10:37:45 +00:00
|
|
|
};
|
|
|
|
in
|
|
|
|
import ./build.nix
|
|
|
|
{ inherit stdenv lib python which; }
|
|
|
|
{ inherit src version;
|
|
|
|
meta = {
|
2016-04-11 14:35:18 +00:00
|
|
|
inherit (src.meta) homepage;
|
2015-09-05 10:37:45 +00:00
|
|
|
description = "A better make, inspired by djb's redo";
|
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2016-04-11 14:35:18 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.timbertson ];
|
2015-09-05 10:37:45 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|