Skip to content

Commit

Permalink
leftwm-theme: init at unstable-2022-12-24
Browse files Browse the repository at this point in the history
  • Loading branch information
yanganto committed Jan 26, 2023
1 parent 39a5a0f commit cf36cc3
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/applications/window-managers/leftwm/leftwm-theme/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ stdenv, lib, fetchFromGitHub, rustPlatform, openssl, pkg-config }:

rustPlatform.buildRustPackage rec {
pname = "leftwm-theme";
version = "unstable-2022-12-24";

src = fetchFromGitHub {
owner = "leftwm";
repo = pname;
rev = "7f2292f91f31d14a30d49372198c0e7cbe183223";
sha256 = "sha256-tYT1eT7Rbs/6zZcl9eWsOA651dUGoXc7eRtVK8fn610=";
};

cargoSha256 = "sha256-3ZwVmyLvDq2z1FEqNuBlEgJLQ9KwcWj/jRlPNCNjCE4=";

checkFlags = [
# direct writing /tmp
"--skip=models::config::test::test_config_new"
# with network access when testing
"--skip=operations::update::test::test_update_repos"
];

nativeBuildInputs = [ pkg-config ];

buildInputs = [ openssl ];

meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64);
description = "A theme manager for LeftWM";
homepage = "https://github.com/leftwm/leftwm-theme";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ yanganto ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29844,6 +29844,8 @@ with pkgs;

leftwm-config = callPackage ../applications/window-managers/leftwm/leftwm-config { };

leftwm-theme = callPackage ../applications/window-managers/leftwm/leftwm-theme { };

levant = callPackage ../applications/networking/cluster/levant { };

lwm = callPackage ../applications/window-managers/lwm { };
Expand Down

0 comments on commit cf36cc3

Please sign in to comment.