Skip to content

Commit ad73458

Browse files
committed
Relicense to MIT License
Fixes: #44
1 parent c9e9ae3 commit ad73458

36 files changed

+69
-567
lines changed

Diff for: COPYING

-504
This file was deleted.

Diff for: LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019-2020 Alexander Sosedkin and other contributors, see AUTHORS.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,10 @@ for a more extensive overview of the subject.
191191
192192
## Licensing and credits
193193
194-
Licensed under GNU Lesser General Public License v3 or later, see COPYING.
195-
Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
194+
Licensed under MIT License, see LICENSE.
195+
Copyright (c) 2019-2020 Alexander Sosedkin and other contributors, see AUTHORS.
196196
197-
Initially based off the official Nix install script
197+
Two rewrites ago it was based off the official Nix install script
198198
(https://nixos.org/nix/install),
199199
presumably written by Eelco Dolstra.
200200

Diff for: ci.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
with import <nixpkgs> { };
54

Diff for: default.nix

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
2+
13
{ pkgs ? import <nixpkgs> { } }:
24

35
rec {

Diff for: modules/build/activation.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, pkgs, ... }:
54

Diff for: modules/build/config.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, pkgs, ... }:
54

Diff for: modules/build/initial-build.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, pkgs, ... }:
54

Diff for: modules/default.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ pkgs ? import <nixpkgs> { }, config ? null }:
54

Diff for: modules/environment/etc/default.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, pkgs, ... }:
54

Diff for: modules/environment/etc/make-etc.sh

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

4-
# inspired by https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/system/etc/make-etc.sh
3+
# Inspired by
4+
# https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/system/etc/make-etc.sh
5+
# (Copyright (c) 2003-2019 Eelco Dolstra and the Nixpkgs/NixOS contributors,
6+
# licensed under MIT License as well)
57

68
source $stdenv/setup
79

Diff for: modules/environment/etc/setup-etc.sh

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
2+
3+
# Inspired by
4+
# https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/system/etc/setup-etc.pl
5+
# (Copyright (c) 2003-2019 Eelco Dolstra and the Nixpkgs/NixOS contributors,
6+
# licensed under MIT License as well)
37

4-
# inspired by https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/system/etc/setup-etc.pl
58

69
set -eu -o pipefail
710

Diff for: modules/environment/files.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, pkgs, ... }:
54

Diff for: modules/environment/links.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, pkgs, ... }:
54

Diff for: modules/environment/login/default.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, pkgs, customPkgs, ... }:
54

Diff for: modules/environment/login/login-inner.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, customPkgs, writeText }:
54

Diff for: modules/environment/login/login.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, writeScript }:
54

Diff for: modules/environment/path.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, pkgs, ... }:
54

Diff for: modules/environment/session-init.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, pkgs, ... }:
54

Diff for: modules/home-manager.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, pkgs, ... }:
54

Diff for: modules/lib-bash/activation-init.sh

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
2+
13
if [[ -v VERBOSE ]]; then
24
export VERBOSE_ECHO=echo
35
export VERBOSE_ARG="--verbose"

Diff for: modules/lib-bash/color-echo.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
12
# The check for terminal output and color support is heavily inspired
23
# by https://unix.stackexchange.com/a/10065.
34

Diff for: modules/module-list.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
[
54
./build/activation.nix

Diff for: modules/user.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, pkgs, ... }:
54

Diff for: modules/version.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, pkgs, ... }:
54

Diff for: nix-on-droid/default.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ bash, coreutils, nix, runCommand }:
54

Diff for: nix-on-droid/nix-on-droid.sh

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!@bash@/bin/bash
22

3+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
4+
35
PATH=@coreutils@/bin:@nix@/bin:${PATH:+:}$PATH
46

57
set -eu

Diff for: pkgs/bootstrap-zip.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, runCommand, zip, bootstrap }:
54

Diff for: pkgs/bootstrap.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ runCommand, nixDirectory, prootTermux, bash, pkgs, config }:
54

Diff for: pkgs/cross-compiling/pkgs.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, libjpeg, path }:
54

Diff for: pkgs/cross-compiling/proot-termux.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ callPackage, fetchFromGitHub, tallocStatic }:
54

Diff for: pkgs/cross-compiling/talloc-static.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ callPackage, fetchurl, python2, zlib }:
54

Diff for: pkgs/default.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ arch, nixOnDroidChannelURL ? null, nixpkgsChannelURL ? null }:
54

Diff for: pkgs/lib/load-nixpkgs.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
let
54
defaultNixpkgsArgs = {

Diff for: pkgs/nix-directory.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ config, lib, stdenv, closureInfo, prootTermux, proot, qemuAarch64Static }:
54

Diff for: pkgs/qemu-aarch64-static.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Licensed under GNU Lesser General Public License v3 or later, see COPYING.
2-
# Copyright (c) 2019 Alexander Sosedkin and other contributors, see AUTHORS.
1+
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
32

43
{ stdenv }:
54

0 commit comments

Comments
 (0)