mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
nwg-dock-hyprland: 0.2.2 -> 0.3.2
Diff: https://github.com/nwg-piotr/nwg-dock-hyprland/compare/v0.2.2...v0.3.2
This commit is contained in:
parent
f644364e7f
commit
5214dfb681
@ -1,27 +1,35 @@
|
|||||||
{ lib
|
{
|
||||||
, buildGoModule
|
lib,
|
||||||
, fetchFromGitHub
|
buildGoModule,
|
||||||
, pkg-config
|
fetchFromGitHub,
|
||||||
, wrapGAppsHook3
|
pkg-config,
|
||||||
, gtk-layer-shell
|
wrapGAppsHook3,
|
||||||
|
gtk-layer-shell,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "nwg-dock-hyprland";
|
pname = "nwg-dock-hyprland";
|
||||||
version = "0.2.2";
|
version = "0.3.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nwg-piotr";
|
owner = "nwg-piotr";
|
||||||
repo = "nwg-dock-hyprland";
|
repo = "nwg-dock-hyprland";
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-iamDOQcQJRdFVnwffWPIXHlY0J4orfrEbfLzaoeV+KM=";
|
hash = "sha256-Vp8JmRQf71vezdknzifxlK7zTlorwiEHsyXpmy6mxIE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-cZ5w7B8bi0faOVWoQ6eeW5ejCZJgnNB91DQalC75mPo=";
|
vendorHash = "sha256-RBU0l4YRtV5JPH1dLT+lZ05jmxRwyn3glMUKHw1Eg8g=";
|
||||||
|
|
||||||
ldflags = [ "-s" "-w" ];
|
ldflags = [
|
||||||
|
"-s"
|
||||||
|
"-w"
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkg-config
|
||||||
|
wrapGAppsHook3
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config wrapGAppsHook3 ];
|
|
||||||
buildInputs = [ gtk-layer-shell ];
|
buildInputs = [ gtk-layer-shell ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user