pixelpwnr: init at unstable-2020-02-05

master
Simon Bruder 2021-10-17 10:35:40 +02:00
parent 5dbd7af275
commit f6fdc79989
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
3 changed files with 25 additions and 0 deletions

View File

@ -2,6 +2,8 @@ final: prev: let
inherit (prev) callPackage;
in
{
pixelpwnr = callPackage ./pixelpwnr/client.nix { };
shoreline = callPackage ./shoreline { };
sturmflut = callPackage ./sturmflut { };

View File

@ -16,6 +16,7 @@
packages = {
inherit (pkgs)
pixelnuke
pixelpwnr
shoreline
sturmflut;
};

22
pixelpwnr/client.nix Normal file
View 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 ];
};
}