forked from mirrors/nixpkgs
sec: 2.8.0 -> 2.8.1 (#47857)
This commit is contained in:
parent
360054f417
commit
4b613137e4
|
@ -1,11 +1,13 @@
|
||||||
{ fetchurl, perl, stdenv }:
|
{ fetchFromGitHub, perl, stdenv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "sec-2.8.0";
|
name = "sec-${meta.version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/simple-evcorr/${name}.tar.gz";
|
owner = "simple-evcorr";
|
||||||
sha256 = "0q9fhkkh0n0jya4kf5c54smk4xbnv01hqhip2y6fnnj9imwskymz";
|
repo = "sec";
|
||||||
|
rev = meta.version;
|
||||||
|
sha256 = "17qzw7k1r3svagaf6jb7166grwqsyxwd6p23b2m9q9h3ggcwynp9";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ perl ];
|
buildInputs = [ perl ];
|
||||||
|
@ -20,10 +22,11 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://simple-evcorr.sourceforge.net/;
|
homepage = https://simple-evcorr.github.io;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
description = "Simple Event Correlator";
|
description = "Simple Event Correlator";
|
||||||
maintainers = [ stdenv.lib.maintainers.tv ];
|
maintainers = [ stdenv.lib.maintainers.tv ];
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
version = "2.8.1";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue