mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
ee1550b763
Also add `version` attribute to GNU `hello` while we are at it.
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 ];
|
|
};
|
|
}
|