mstpd: 0.0.5.20171113 -> 0.0.7

This commit is contained in:
Renaud 2019-05-05 11:24:34 +02:00 committed by GitHub
parent 75d1439f8f
commit 25e0560958
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,22 +1,28 @@
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation {
name = "mstpd-0.0.5.20171113";
stdenv.mkDerivation rec {
pname = "mstpd";
version = "0.0.7";
src = fetchFromGitHub {
owner = "mstpd";
repo = "mstpd";
rev = "2522c6eed201bce8dd81e1583f28748e9c552d0d";
sha256 = "0ckk386inwcx3776hf15w78hpw4db2rgv4zgf0i3zcylr83hhsr2";
owner = pname;
repo = pname;
rev = version;
sha256 = "01majib6d1rixngf8c8vcrj1akf8nsqpxhdfdxxi2xwg23vx8f1a";
};
nativeBuildInputs = [ autoreconfHook ];
installFlags = [ "DESTDIR=$(out)" ];
configureFlags = [
"--prefix=$(out)"
"--sysconfdir=$(out)/etc"
"--sbindir=$(out)/sbin"
"--libexecdir=$(out)/lib"
];
meta = with stdenv.lib; {
description = "Multiple Spanning Tree Protocol daemon";
homepage = https://sourceforge.net/projects/mstpd/;
homepage = "https://github.com/mstpd/mstpd";
license = licenses.gpl2;
platforms = platforms.linux;
};