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

22 lines
606 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, lib, python, which }:
2015-09-05 10:37:45 +00:00
let
version = "0.5.5";
src = fetchFromGitHub {
sha256 = "12yv0j333z6jkaaal8my3jx3k4ml9hq8ldis5zfvr8179d4xah7q";
rev = "version-${version}";
repo = "gup";
owner = "timbertson";
2015-09-05 10:37:45 +00:00
};
in
import ./build.nix
{ inherit stdenv lib python which; }
{ inherit src version;
meta = {
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;
maintainers = [ stdenv.lib.maintainers.timbertson ];
2015-09-05 10:37:45 +00:00
platforms = stdenv.lib.platforms.all;
};
}