mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
sharing: init at 1.2.2
This commit is contained in:
parent
3cbe06b845
commit
4f706834c9
32
pkgs/servers/sharing/default.nix
Normal file
32
pkgs/servers/sharing/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ buildNpmPackage
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
}:
|
||||
|
||||
buildNpmPackage rec {
|
||||
pname = "sharing";
|
||||
version = "1.2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "parvardegr";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-y5tAbyRGxr6lagU/+pLBN0VIpk3+SzKyXOehQk6NW+M=";
|
||||
};
|
||||
|
||||
npmDepsHash = "sha256-2DwFkkoODDuLOxF63F1ywoXzjcMn/+H2ycRWlJlNcCI=";
|
||||
|
||||
dontNpmBuild = true;
|
||||
|
||||
# The prepack script runs the build script, which we'd rather do in the build phase.
|
||||
npmPackFlags = [ "--ignore-scripts" ];
|
||||
|
||||
NODE_OPTIONS = "--openssl-legacy-provider";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Command-line tool to share directories and files to mobile devices";
|
||||
homepage = "https://github.com/parvardegr/sharing";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ChaosAttractor ];
|
||||
};
|
||||
}
|
@ -25193,6 +25193,8 @@ with pkgs;
|
||||
|
||||
shairport-sync = callPackage ../servers/shairport-sync { };
|
||||
|
||||
sharing = callPackage ../servers/sharing { };
|
||||
|
||||
showoff = callPackage ../servers/http/showoff {};
|
||||
|
||||
serfdom = callPackage ../servers/serf { };
|
||||
|
Loading…
Reference in New Issue
Block a user