copyright-update: init at 2016.1018

This commit is contained in:
Robert Helgesson 2017-02-01 22:18:36 +01:00
parent 7a1dd5fb55
commit de172ae061
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ 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 ];
};
}

View file

@ -743,6 +743,8 @@ with pkgs;
consul-template = callPackage ../tools/system/consul-template { };
copyright-update = callPackage ../tools/text/copyright-update { };
corebird = callPackage ../applications/networking/corebird { };
corosync = callPackage ../servers/corosync { };