copyright-update: init at 2016.1018
This commit is contained in:
parent
7a1dd5fb55
commit
de172ae061
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in New Issue