pixelpwnr: init at unstable-2020-02-05
This commit is contained in:
parent
5dbd7af275
commit
f6fdc79989
|
@ -2,6 +2,8 @@ final: prev: let
|
||||||
inherit (prev) callPackage;
|
inherit (prev) callPackage;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
pixelpwnr = callPackage ./pixelpwnr/client.nix { };
|
||||||
|
|
||||||
shoreline = callPackage ./shoreline { };
|
shoreline = callPackage ./shoreline { };
|
||||||
|
|
||||||
sturmflut = callPackage ./sturmflut { };
|
sturmflut = callPackage ./sturmflut { };
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
packages = {
|
packages = {
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
pixelnuke
|
pixelnuke
|
||||||
|
pixelpwnr
|
||||||
shoreline
|
shoreline
|
||||||
sturmflut;
|
sturmflut;
|
||||||
};
|
};
|
||||||
|
|
22
pixelpwnr/client.nix
Normal file
22
pixelpwnr/client.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ lib, fetchFromGitHub, rustPlatform }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "pixelpwnr";
|
||||||
|
version = "unstable-2020-02-05";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "timvisee";
|
||||||
|
repo = pname;
|
||||||
|
rev = "fd8f35639dfaefef83ccb752bdc20434d208f0a6";
|
||||||
|
sha256 = "sha256-PC+1Vx9H9njAy5UusFOHlE8SLpCf+J7cCPWONwDSU58=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-4cnsSGUzIJyTEbjmKeORrw03RuyJxQ6PpBcwVR17xdM=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Insanely fast pixelflut client for images and animations written in Rust";
|
||||||
|
homepage = "https://github.com/timvisee/pixelpwnr";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
maintainers = with maintainers; [ sbruder ];
|
||||||
|
};
|
||||||
|
}
|
Reference in a new issue