nixpkgs/pkgs/tools/networking/ratools/default.nix
Robin Gloster 28cc2642f0
treewide: use less phases if not necessary
This removes some skipping of e.g. fixupPhase and cleans up occurences
where this led to duplicating code
2017-08-11 11:40:36 +02:00

29 lines
693 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "ratools-${version}";
version = "0.6.2";
src = fetchFromGitHub {
owner = "danrl";
repo = "ratools";
rev = "v${version}";
sha256 = "07m45bn9lzgbfihmxic23wqp73nxg5ihrvkigr450jq6gzvgwawq";
};
makeFlags = "-C src";
installPhase = ''
install -vD bin/* -t $out/bin
install -vD man/* -t $out/share/man/man8
'';
meta = with stdenv.lib; {
description = "A fast, dynamic, multi-threading framework for IPv6 Router Advertisements";
homepage = https://github.com/danrl/ratools;
license = licenses.asl20;
platforms = platforms.linux;
maintainers = [ maintainers.fpletz ];
};
}