sturmflut: init at unstable-2020-02-14
This commit is contained in:
parent
0f226e3f00
commit
5dbd7af275
|
@ -3,4 +3,6 @@ final: prev: let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
shoreline = callPackage ./shoreline { };
|
shoreline = callPackage ./shoreline { };
|
||||||
|
|
||||||
|
sturmflut = callPackage ./sturmflut { };
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,8 @@
|
||||||
packages = {
|
packages = {
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
pixelnuke
|
pixelnuke
|
||||||
shoreline;
|
shoreline
|
||||||
|
sturmflut;
|
||||||
};
|
};
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
29
sturmflut/default.nix
Normal file
29
sturmflut/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub, pkg-config, imagemagick }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "sturmflut";
|
||||||
|
version = "unstable-2020-02-14";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "TobleMiner";
|
||||||
|
repo = pname;
|
||||||
|
rev = "f76221d873826db2a9df73f4626a792d28aacb42";
|
||||||
|
sha256 = "sha256-Vx1aN8m3zVuSTZJ69rYyVTlw0/9HvtT0+Y2c61pa/Tk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
buildInputs = [ imagemagick ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
install -D sturmflut $out/bin/sturmflut
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A FAST (80+ Gbit/s) pixelflut client with full IPv6 and animation support";
|
||||||
|
homepage = "https://github.com/TobleMiner/sturmflut";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ sbruder ];
|
||||||
|
};
|
||||||
|
}
|
Reference in a new issue