2021-01-11 07:54:33 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
perl,
|
|
|
|
}:
|
2017-02-01 21:18:36 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "copyright-update";
|
2017-02-01 21:18:36 +00:00
|
|
|
version = "2016.1018";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-08-15 12:41:18 +00:00
|
|
|
name = "${pname}-${version}-src";
|
2017-02-01 21:18:36 +00:00
|
|
|
owner = "jaalto";
|
|
|
|
repo = "project--copyright-update";
|
|
|
|
rev = "release/${version}";
|
|
|
|
sha256 = "1kj6jlgyxrgvrpv7fcgbibfqqa83xljp17v6sas42dlb105h6sgd";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
|
|
|
installFlags = [
|
|
|
|
"INSTALL=install"
|
|
|
|
"prefix=$(out)"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/jaalto/project--copyright-update";
|
2017-02-01 21:18:36 +00:00
|
|
|
description = "Updates the copyright information in a set of files";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "copyright-update";
|
2017-02-01 21:18:36 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.rycee ];
|
|
|
|
};
|
|
|
|
}
|