mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
Fix bad licenses on CUDA packages
They were marked as "nonfree" rather than "unfree", causing them to be allowed with allowUnfree = false.
This commit is contained in:
parent
33fa065f17
commit
2ba9ae0129
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, patchelf, perl, ncurses, expat, python, zlib
|
||||
{ lib, stdenv, fetchurl, patchelf, perl, ncurses, expat, python, zlib
|
||||
, xlibs, gtk2, glib, fontconfig, freetype, unixODBC, alsaLib
|
||||
} :
|
||||
|
||||
@ -57,6 +57,6 @@ stdenv.mkDerivation rec {
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
||||
meta = {
|
||||
license = [ "nonfree" ];
|
||||
license = lib.licenses.unfree;
|
||||
};
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, patchelf, perl, ncurses, expat, python, zlib
|
||||
{ lib, stdenv, fetchurl, patchelf, perl, ncurses, expat, python, zlib
|
||||
, xlibs, gtk2, glib, fontconfig, freetype, unixODBC, alsaLib
|
||||
} :
|
||||
|
||||
@ -57,7 +57,7 @@ stdenv.mkDerivation rec {
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
||||
meta = {
|
||||
license = [ "nonfree" ];
|
||||
license = lib.licenses.unfree;
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, patchelf }:
|
||||
{ lib, stdenv, fetchurl, patchelf }:
|
||||
|
||||
assert stdenv ? glibc;
|
||||
|
||||
@ -41,6 +41,6 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
homepage = http://developer.nvidia.com/cg-toolkit;
|
||||
license = [ "nonfree-redistributable" ];
|
||||
license = lib.licenses.unfreeRedistributable;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user