2021-01-14 21:42:41 -08:00
|
|
|
{ lib, stdenv, runtimeShell }:
|
2018-06-09 13:14:36 -07:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "example-unfree-package";
|
2018-06-09 13:14:36 -07:00
|
|
|
version = "1.0";
|
|
|
|
|
|
|
|
phases = [ "installPhase" "fixupPhase" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cat > $out/bin/hello-unfree << EOF
|
2019-02-26 03:45:54 -08:00
|
|
|
#!${runtimeShell}
|
2018-06-09 13:14:36 -07:00
|
|
|
echo "Hello, you are running an unfree system!"
|
|
|
|
EOF
|
|
|
|
chmod +x $out/bin/hello-unfree
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An example package with unfree license (for testing)";
|
2021-01-14 21:42:41 -08:00
|
|
|
license = lib.licenses.unfree;
|
|
|
|
maintainers = [ lib.maintainers.oxij ];
|
2018-06-09 13:14:36 -07:00
|
|
|
};
|
|
|
|
}
|