about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/copyright-update/default.nix
blob: 72cecf1e9246add5878cd1bc72ea546aa02293d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, stdenv, fetchFromGitHub, perl }:

stdenv.mkDerivation rec {
  pname = "copyright-update";
  version = "2016.1018";

  src = fetchFromGitHub {
    name = "${pname}-${version}-src";
    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";
    description = "Updates the copyright information in a set of files";
    mainProgram = "copyright-update";
    license = licenses.gpl2Plus;
    platforms = platforms.all;
    maintainers = [ maintainers.rycee ];
  };
}