about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/X11/paperview/default.nix
blob: 790eaed53ab5a7a15b334794b6a7599b1fe834c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib
, stdenv
, fetchFromGitHub
, libX11
, SDL2
}:

stdenv.mkDerivation rec {
  pname = "paperview";
  version = "unstable-2020-09-22";

  src = fetchFromGitHub {
    owner = "glouw";
    repo = "paperview";
    rev = "40162fb76566fec8163c338c169c2fcd9df6ef42";
    hash = "sha256-rvf89vMIT274+Hva+N4KFu1iT2XE6fq5Bi4kOQg2M0g=";
  };

  buildInputs = [
    SDL2
    libX11
  ];

  makeFlags = [
    "PREFIX=${placeholder "out"}"
  ];

  meta = with lib; {
    description = "A high performance X11 animated wallpaper setter";
    homepage = "https://github.com/glouw/paperview";
    platforms = platforms.linux;
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ _3JlOy-PYCCKUi ];
  };
}