tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
mpv-shim-default-shaders: init at 2.1.0
Morgan Helton
2 years ago
de450842
b27fac64
+31
2 changed files
expand all
collapse all
unified
split
pkgs
applications
video
mpv-shim-default-shaders
default.nix
top-level
all-packages.nix
+29
pkgs/applications/video/mpv-shim-default-shaders/default.nix
···
1
1
+
{ lib, stdenv, fetchFromGitHub }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
pname = "mpv-shim-default-shaders";
5
5
+
version = "2.1.0";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "iwalton3";
9
9
+
repo = "default-shader-pack";
10
10
+
rev = "v${version}";
11
11
+
sha256 = "sha256-BM2GvmUoWQUUMH464YIIqu5A1t1B+otbJxAGFbySuq8=";
12
12
+
};
13
13
+
14
14
+
installPhase = ''
15
15
+
mkdir -p $out/share/${pname}
16
16
+
cp -r shaders *.json $out/share/${pname}
17
17
+
'';
18
18
+
19
19
+
meta = with lib; {
20
20
+
homepage = "https://github.com/iwalton3/default-shader-pack";
21
21
+
description = "Preconfigured set of MPV shaders and configurations for MPV Shim media clients.";
22
22
+
license = with licenses; [
23
23
+
gpl3Plus
24
24
+
mit
25
25
+
unlicense
26
26
+
];
27
27
+
maintainers = with maintainers; [ devusb ];
28
28
+
};
29
29
+
}
+2
pkgs/top-level/all-packages.nix
···
32533
32533
32534
32534
open-in-mpv = callPackage ../applications/video/open-in-mpv { };
32535
32535
32536
32536
+
mpv-shim-default-shaders = callPackage ../applications/video/mpv-shim-default-shaders { };
32537
32537
+
32536
32538
mrpeach = callPackage ../applications/audio/pd-plugins/mrpeach { };
32537
32539
32538
32540
mtpaint = callPackage ../applications/graphics/mtpaint { };