mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
24 lines
532 B
Nix
24 lines
532 B
Nix
|
{ stdenv }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "example-unfree-package-${version}";
|
||
|
version = "1.0";
|
||
|
|
||
|
phases = [ "installPhase" "fixupPhase" ];
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/bin
|
||
|
cat > $out/bin/hello-unfree << EOF
|
||
|
#!/bin/sh
|
||
|
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 ];
|
||
|
};
|
||
|
}
|