base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / le / leftwm-theme / package.nix
blobc10601a0f1f99103763ef4f7fa8fc1109452ee4f
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5   openssl,
6   pkg-config,
7 }:
9 rustPlatform.buildRustPackage {
10   pname = "leftwm-theme";
11   version = "unstable-2024-03-05";
13   src = fetchFromGitHub {
14     owner = "leftwm";
15     repo = "leftwm-theme";
16     rev = "b394824ff874b269a90c29e2d45b0cacc4d209f5";
17     hash = "sha256-cV4tY1qKNluSSGf+WwKFK3iVE7cMevafl6qQvhy1flE=";
18   };
20   cargoHash = "sha256-VEQn1LFXiZCVR2WgOFoHo18d3cdIoq9/zNjg8GMs0j8=";
22   checkFlags = [
23     # direct writing /tmp
24     "--skip=models::config::test::test_config_new"
25     # with network access when testing
26     "--skip=operations::update::test::test_update_repos"
27   ];
29   nativeBuildInputs = [ pkg-config ];
30   buildInputs = [ openssl ];
32   env = {
33     OPENSSL_NO_VENDOR = 1;
34   };
36   meta = {
37     description = "Theme manager for LeftWM";
38     homepage = "https://github.com/leftwm/leftwm-theme";
39     license = lib.licenses.bsd3;
40     platforms = lib.platforms.linux;
41     maintainers = with lib.maintainers; [ denperidge ];
42   };