biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / hello-unfree / default.nix
blob7ff71814fb5ebdfb3b032cea2faf65b9f0bdd99d
1 { lib, stdenv, runtimeShell }:
3 stdenv.mkDerivation {
4   pname = "example-unfree-package";
5   version = "1.0";
7   dontUnpack = true;
9   installPhase = ''
10     mkdir -p $out/bin
11     cat > $out/bin/hello-unfree << EOF
12     #!${runtimeShell}
13     echo "Hello, you are running an unfree system!"
14     EOF
15     chmod +x $out/bin/hello-unfree
16   '';
18   meta = {
19     description = "Example package with unfree license (for testing)";
20     license = lib.licenses.unfree;
21     maintainers = [ lib.maintainers.oxij ];
22     mainProgram = "hello-unfree";
23   };