25 lines
422 B
Nix
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
|
|
'';
|
|
} |