nixpkgs/pkgs/applications/misc/hello-unfree/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
542 B
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv, runtimeShell }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "example-unfree-package";
version = "1.0";
2021-08-03 12:04:36 +00:00
dontUnpack = true;
installPhase = ''
mkdir -p $out/bin
cat > $out/bin/hello-unfree << EOF
#!${runtimeShell}
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 05:42:41 +00:00
license = lib.licenses.unfree;
maintainers = [ lib.maintainers.oxij ];
2024-02-11 02:19:15 +00:00
mainProgram = "hello-unfree";
};
}