diff options
Diffstat (limited to 'pkgs/by-name/le/leftwm-config/package.nix')
-rw-r--r-- | pkgs/by-name/le/leftwm-config/package.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/by-name/le/leftwm-config/package.nix b/pkgs/by-name/le/leftwm-config/package.nix new file mode 100644 index 000000000000..90c91a261e0d --- /dev/null +++ b/pkgs/by-name/le/leftwm-config/package.nix @@ -0,0 +1,27 @@ +{ + lib, + fetchFromGitHub, + rustPlatform, +}: + +rustPlatform.buildRustPackage { + pname = "leftwm-config"; + version = "0-unstable-2024-03-13"; + + src = fetchFromGitHub { + owner = "leftwm"; + repo = "leftwm-config"; + rev = "a9f2f21ece3a01d6c36610295ae3163644d3f99e"; + hash = "sha256-wyb/26EyNyBJeTDUvnMxlMiQjaCGBES8t4VteNY1I/A="; + }; + + cargoHash = "sha256-U3mgbG9h2cDqr0aqxbI2CJUOweIoDXDxmsWg0zxolSo="; + + meta = { + description = "Little satellite utility for LeftWM"; + homepage = "https://github.com/leftwm/leftwm-config"; + maintainers = with lib.maintainers; [ denperidge ]; + license = lib.licenses.bsd3; + platforms = lib.platforms.linux; + }; +} |