The proton-pass-cli is marked as unfree
fi
for platform in ${lib.escapeShellArgs finalAttrs.meta.platforms}; do
update-source-version "proton-pass-cli" "$NEW_VERSION" --ignore-same-version --source-key="sources.$platform"
done
'';
};
meta = {
description = "Command-line interface for managing your Proton Pass vaults, items, and secrets";
homepage = "https://github.com/protonpass/pass-cli";
license = lib.licenses.unfree;
mainProgram = "pass-cli";
maintainers = with lib.maintainers; [ delafthi ];
platforms = lib.attrNames finalAttrs.passthru.sources;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
})
But the distribution is licensed as GPL
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
This file has been truncated. show original
Why is it not built from source and licensed as GPL?
NobbZ
June 11, 2026, 6:32am
2
Back when the derivation was created based on version 1.3.2 there was no license file in the repo and no license mentioned in the Cargo.toml.
So unfree is the only valid option. Most legislatives assume that without an explicit license you are not allowed to do anything with it. So unfree is a good approximation.
3 Likes