Files
PinePods-nix/pinepods.nix
2026-03-01 20:15:59 -05:00

25 lines
422 B
Nix

{
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "PinePods";
version = "0.8.2";
src = fetchFromGitHub {
owner = "madeofpendletonwool";
repo = "PinePods";
rev = "0.8.2";
sha256 = "1ivqazhzg3wwlqzz0dv0g48hv265c3qqhvxl02j20361j4mqn6rp";
};
buildInputs = [ ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp PinePods $out/bin
runHook postInstall
'';
}