about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/hello-unfree/default.nix
blob: a5a9187ab0f27fa7957eb151980fb967bd207a10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, runtimeShell }:

stdenv.mkDerivation {
  pname = "example-unfree-package";
  version = "1.0";

  phases = [ "installPhase" "fixupPhase" ];

  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)";
    license = stdenv.lib.licenses.unfree;
    maintainers = [ stdenv.lib.maintainers.oxij ];
  };
}