dwm-status: 1.7.1 -> unstable-2021-05-04

authored by moni.tngl.sh and committed by Jonathan Ringer 2af2325c 5a4cec04

+6 -5
+6 -5
pkgs/applications/window-managers/dwm/dwm-status.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "dwm-status"; 12 - version = "1.7.1"; 12 + version = "unstable-2021-05-04"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "Gerschtli"; 16 - repo = "dwm-status"; 17 - rev = version; 18 - sha256 = "172qkzbi37j6wx81pyqqffi9wxbg3bf8nis7d15ncn1yfd5r4gqh"; 16 + repo = pname; 17 + rev = "c5b1fda78a8175cb53df9d31ae037c58279df810"; 18 + sha256 = "sha256-dJUQ7vuz9OC6eU00Snbbza63j01ms54sXO1kqheun+8="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ makeWrapper pkg-config ]; 22 22 buildInputs = [ dbus gdk-pixbuf libnotify xorg.libX11 ]; 23 23 24 - cargoSha256 = "041sd9zm1c3v6iihnwjcya2xg5yxb2y4biyxpjlfblz2srxa15dm"; 24 + cargoSha256 = "sha256-zSt6iNZ9hmvAgFEXzqfovRsMryVyFWHm68G7J3SMztY="; 25 25 26 26 postInstall = lib.optionalString (bins != []) '' 27 27 wrapProgram $out/bin/dwm-status --prefix "PATH" : "${lib.makeBinPath bins}" ··· 32 32 homepage = "https://github.com/Gerschtli/dwm-status"; 33 33 license = with licenses; [ mit ]; 34 34 maintainers = with maintainers; [ gerschtli ]; 35 + mainProgram = pname; 35 36 platforms = platforms.linux; 36 37 }; 37 38 }