The purpose of this document is to argue what licenses should be advertised by the multimc
derivation in Nixpkgs_ in its metadata field, in the interest of accuracy. I will read the `copyright notices`__ included by upstream to try and enumerate every license term that applies to the distributed package. (not necessarily the source code)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# commands: | |
# n build .#nixosConfigurations.legacy390_64.config.system.build.toplevel | |
# n build .#nixosConfigurations.legacy390_32.config.system.build.toplevel | |
{ | |
description = "test building nvidia legacy 390 drivers with Linux 5.10"; | |
outputs = { self, nixpkgs }: { | |
nixosConfigurations = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final: prev: { | |
master = | |
let | |
source = builtins.fetchTarball { | |
url = "https://github.com/NixOS/nixpkgs/archive/master.tar.gz"; | |
}; | |
in | |
import source { | |
config = final.config; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import processing.video.*; | |
Movie cam; | |
void setup() { | |
cam = new Movie(this, "testvideo.avi"); | |
cam.loop(); | |
} | |
void draw() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.security.SecureRandom; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.List; | |
import java.util.stream.Collectors; | |
public class poc { | |
private static final String ALPHA_UPPER_CASE = "abcdefghijklmnopqrstuvwxyz".toUpperCase(); | |
private static final String NUMERIC= "0123456789"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val dottyVersion = "0.24.0-RC1" | |
scalaVersion := dottyVersion | |
scalacOptions ++= Seq( | |
"-deprecation", | |
"-feature", | |
"-Xfatal-warnings", | |
"-encoding", "utf8", | |
"-Yexplicit-nulls", | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is part of Xpra. | |
# Copyright (C) 2017-2020 Antoine Martin <[email protected]> | |
# Xpra is released under the terms of the GNU GPL v2, or, at your option, any | |
# later version. See the file COPYING for details. | |
import sys | |
import os.path | |
from xpra.util import envbool | |
from xpra.os_util import OSX, POSIX, shellsub, getuid, get_util_logger, osexpand, umask_context |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import $ivy.`org.typelevel::cats-core:2.1.0` | |
import cats._ | |
import data.ContT | |
import syntax.all._ | |
// ContT.liftF, currently unreleased. | |
def ContT_liftF[M[_]: FlatMap, R, A](ma: M[A]): ContT[M, R, A] = | |
ContT(ma.flatMap(_)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Comment: This is a revocation certificate | |
iQI2BCABCAAgFiEEROVC0lo5kChqc2X+2hFPBEKttNcFAlmAVwgCHQAACgkQ2hFP | |
BEKttNftkA/+OOWCiNsgNorVVPAv3vOrgmTZS0J3tqBHhCS4JzEiE5ppPxmRzIfn | |
X0oaeevviSS4tz2wfCZtuTil1v2fbYRCSCFKanhdeNJXFV55WlZy0K2GA3RnFOsv | |
VjQ4+vpbtwIwjH1WnIS4QqnZmrvnQTJEJidTrnN4N7YWXMPv/WYk3vYlwIrD7geB | |
H6SyAtUa73jYQmbSfmBm2OgA486ySZ0o7W1ezBu9zTPAXgUdV6kKybQGKkT/Ijoa | |
mrC5V62ZpSbumcIzV7imHG9N+Pl+03+P8qv6ls0ySPa47703RlIUFrXvR7WNuRQ1 | |
u/0DGS9W4RemNXD3+bgp08rsKepPencxkfaO6g3fy2jXsNQoEBvRI0f5mNRuvABi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. | |
// Jad home page: http://www.geocities.com/kpdus/jad.html | |
// Decompiler options: packimports(3) | |
// Source File Name: Main.scala | |
import java.util.function.Function; | |
import scala.Predef$; | |
import scala.runtime.BoxesRunTime; | |
public final class Main$ |