27 lines
714 B
Nix
27 lines
714 B
Nix
{ stdenv, fetchFromGitHub, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "copyright-update-${version}";
|
|
version = "2016.1018";
|
|
|
|
src = fetchFromGitHub {
|
|
name = "${name}-src";
|
|
owner = "jaalto";
|
|
repo = "project--copyright-update";
|
|
rev = "release/${version}";
|
|
sha256 = "1kj6jlgyxrgvrpv7fcgbibfqqa83xljp17v6sas42dlb105h6sgd";
|
|
};
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
installFlags = [ "INSTALL=install" "prefix=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/jaalto/project--copyright-update;
|
|
description = "Updates the copyright information in a set of files";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.rycee ];
|
|
};
|
|
}
|