nixpkgs/pkgs/os-specific/linux/mstpd/default.nix

25 lines
647 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook }:
2015-01-07 21:37:59 +00:00
stdenv.mkDerivation {
name = "mstpd-0.0.5.20171113";
2015-01-07 21:37:59 +00:00
src = fetchFromGitHub {
owner = "mstpd";
repo = "mstpd";
rev = "2522c6eed201bce8dd81e1583f28748e9c552d0d";
sha256 = "0ckk386inwcx3776hf15w78hpw4db2rgv4zgf0i3zcylr83hhsr2";
2015-01-07 21:37:59 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
2015-01-07 21:37:59 +00:00
installFlags = [ "DESTDIR=$(out)" ];
2015-01-07 21:37:59 +00:00
meta = with stdenv.lib; {
description = "Multiple Spanning Tree Protocol daemon";
homepage = https://sourceforge.net/projects/mstpd/;
2015-01-07 21:37:59 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ wkennington ];
};
}