nixpkgs/pkgs/by-name/co/copyright-update/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
773 B
Nix
Raw Normal View History

{
lib,
stdenv,
fetchFromGitHub,
perl,
}:
2017-02-01 21:18:36 +00:00
stdenv.mkDerivation rec {
pname = "copyright-update";
2017-02-01 21:18:36 +00:00
version = "2016.1018";
src = fetchFromGitHub {
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)"
];
meta = with lib; {
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";
mainProgram = "copyright-update";
2017-02-01 21:18:36 +00:00
license = licenses.gpl2Plus;
platforms = platforms.all;
maintainers = [ maintainers.rycee ];
};
}