mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
35 lines
707 B
Nix
35 lines
707 B
Nix
{ lib
|
|
, stdenv
|
|
, php
|
|
, fetchurl
|
|
, unzip
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "XBackBone";
|
|
version = "3.5.0";
|
|
|
|
nativeBuildInputs = [
|
|
unzip
|
|
];
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/SergiX44/XBackBone/releases/download/${version}/release-v${version}.zip";
|
|
sha256 = "17p180yhsgjsm9pa5vkmqfrk71avss33vw2bjb6py90dwknbkipl";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
mv * $out
|
|
'';
|
|
|
|
meta = {
|
|
description = "A lightweight file manager with full ShareX, Screencloud support and more";
|
|
homepage = "https://xbackbone.app/";
|
|
license = lib.licenses.agpl3;
|
|
maintainers = [ lib.maintainers.kittywitch ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|