~ruther/nixos-config

nixos-config/pkgs/dwlmsg.nix -rw-r--r-- 462 bytes
65631fe7 — Frantisek Bohacek feat: add support for Guix 7 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)"
  ];
}
Do not follow this link