~ruther/nixos-config

ref: 0cf3a637d42c2ea352eb8d30a50eb00b0911b12f nixos-config/pkgs/dwlmsg.nix -rw-r--r-- 462 bytes
0cf3a637 — Frantisek Bohacek feat: set new waillpaper fetched from nixos-artwork 1 year, 5 months ago
                                                                                
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
{ stdenv, fetchgit, pkg-config, wayland-scanner, wayland, wlroots }:

stdenv.mkDerivation {
  name = "dwlmsg";

  src = fetchgit {
    url = "https://codeberg.org/notchoc/dwlmsg";
    rev = "72668a5e5f2098f20831d83aa27bc4c3b8e3189d";
    hash = "sha256-AKmxN8NOgJj0rOItT1P7Ss4oRS/HQ7qdVx9Rh9VtVp8=";
  };

  nativeBuildInputs = [
    pkg-config
    wayland-scanner
  ];

  buildInputs = [
    wayland
    wlroots
  ];

  makeFlags = [
    "PREFIX=$(out)"
  ];
}