tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cmake: add bsd3 license
Matthew Bauer
7 years ago
e62996f6
4a5cbdf5
+2
2 changed files
expand all
collapse all
unified
split
pkgs
development
tools
build-managers
cmake
2.8.nix
default.nix
+1
pkgs/development/tools/build-managers/cmake/2.8.nix
···
84
description = "Cross-Platform Makefile Generator";
85
platforms = if useQt4 then qt4.meta.platforms else stdenv.lib.platforms.unix;
86
maintainers = with stdenv.lib.maintainers; [ ];
0
87
};
88
}
···
84
description = "Cross-Platform Makefile Generator";
85
platforms = if useQt4 then qt4.meta.platforms else stdenv.lib.platforms.unix;
86
maintainers = with stdenv.lib.maintainers; [ ];
87
+
license = stdenv.lib.licenses.bsd3;
88
};
89
}
+1
pkgs/development/tools/build-managers/cmake/default.nix
···
126
description = "Cross-Platform Makefile Generator";
127
platforms = if useQt4 then qt4.meta.platforms else platforms.all;
128
maintainers = with maintainers; [ ttuegel lnl7 ];
0
129
};
130
}
···
126
description = "Cross-Platform Makefile Generator";
127
platforms = if useQt4 then qt4.meta.platforms else platforms.all;
128
maintainers = with maintainers; [ ttuegel lnl7 ];
129
+
license = licenses.bsd3;
130
};
131
}