2021-01-15 06:42:41 +01:00
|
|
|
{ lib, stdenv, runtimeShell }:
|
2018-06-09 22:14:36 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "example-unfree-package";
|
2018-06-09 22:14:36 +02:00
|
|
|
version = "1.0";
|
|
|
|
|
|
|
|
phases = [ "installPhase" "fixupPhase" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cat > $out/bin/hello-unfree << EOF
|
2019-02-26 12:45:54 +01:00
|
|
|
#!${runtimeShell}
|
2018-06-09 22:14:36 +02: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-15 06:42:41 +01:00
|
|
|
license = lib.licenses.unfree;
|
|
|
|
maintainers = [ lib.maintainers.oxij ];
|
2018-06-09 22:14:36 +02:00
|
|
|
};
|
|
|
|
}
|