nixpkgs/pkgs/development/tools/build-managers/gup/default.nix

21 lines
641 B
Nix
Raw Normal View History

2015-09-05 12:37:45 +02:00
{ stdenv, fetchgit, lib, python, which }:
let
2016-01-24 06:29:35 +01:00
version = "0.5.3";
2015-09-05 12:37:45 +02:00
src = fetchgit {
url = "https://github.com/gfxmonk/gup.git";
2016-01-24 06:29:35 +01:00
rev = "55ffd8828ddc28a2a786b75422d672d6569f961f";
sha256 = "7c2abbf5d3814c6b84da0de1c91f9f7d299c2362cf091da96f6a68d8fffcb5ce";
2015-09-05 12:37:45 +02:00
};
in
import ./build.nix
{ inherit stdenv lib python which; }
{ inherit src version;
meta = {
description = "A better make, inspired by djb's redo";
homepage = https://github.com/gfxmonk/gup;
license = stdenv.lib.licenses.lgpl2Plus;
maintainers = [ stdenv.lib.maintainers.gfxmonk ];
platforms = stdenv.lib.platforms.all;
};
}