Skip to content

Commit

Permalink
sandstorm: wtf is ekam...
Browse files Browse the repository at this point in the history
  • Loading branch information
evils committed Jan 25, 2020
1 parent 7054895 commit 243d341
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pkgs/servers/sandstorm/default.nix
@@ -0,0 +1,38 @@
{ stdenv, lib, fetchgit
, python3, go, cmake, zlib
, which
, libpcap, strace, curl
, discount, git, meteor
, xz, zip, unzip
}:

stdenv.mkDerivation rec {
pname = "sandstorm";
version = "0.257";

src = fetchgit {
url = "https://github.com/sandstorm-io/sandstorm.git";
rev = "v${version}";
sha256 = "1cikpihf64q6yz8z7ff0lbz98c4z7g6ygr5fbi0f0jam2qv0ii6x";
fetchSubmodules = true;
leaveDotGit = true;
};

nativeBuildInputs = [ git which ];

buildInputs = [
libpcap xz zip unzip
curl python3 zlib go
meteor discount ];

meta = with stdenv.lib; {
description = "A self-hostable web productivity suite";
longDescription = ''
Sandstorm is an open source project built by a community of volunteers with the goal of making it really easy to run open source web applications.
'';
license = licenses.asl20;
platforms = platforms.linux;
maintainers = [ maintainers.evils ];
};

}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -15811,6 +15811,8 @@ in

sampler = callPackage ../applications/misc/sampler { };

sandstorm = callPackage ../servers/sandstorm { };

shairplay = callPackage ../servers/shairplay { avahi = avahi-compat; };

shairport-sync = callPackage ../servers/shairport-sync { };
Expand Down

0 comments on commit 243d341

Please sign in to comment.