mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 17:23:08 +00:00
73 lines
1.5 KiB
Nix
73 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, substituteAll
|
|
, buildGoModule
|
|
, go
|
|
, glib
|
|
, pkg-config
|
|
, cairo
|
|
, gtk3
|
|
, xcur2png
|
|
, libX11
|
|
, zlib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "nwg-look";
|
|
version = "0.2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nwg-piotr";
|
|
repo = "nwg-look";
|
|
rev = "v${version}";
|
|
hash = "sha256-Gw0C5PCVwXuwXWF39P7pc8KdnmCYRH24zizShmniynM=";
|
|
};
|
|
|
|
vendorHash = "sha256-vHqnIkzsoQHiP6mmrwNetq6Pp5UB1CmX7mYvgsbvb0s=";
|
|
|
|
# Replace /usr/ directories with the packages output location
|
|
# This means it references the correct path
|
|
patches = [ ./fix-paths.patch ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace main.go tools.go --replace '@out@' $out
|
|
'';
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
xcur2png
|
|
libX11.dev
|
|
zlib
|
|
gtk3
|
|
];
|
|
|
|
CGO_ENABLED = 1;
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share
|
|
mkdir -p $out/share/nwg-look/langs
|
|
mkdir -p $out/share/applications
|
|
mkdir -p $out/share/pixmaps
|
|
cp stuff/main.glade $out/share/nwg-look/
|
|
cp langs/* $out/share/nwg-look/langs
|
|
cp stuff/nwg-look.desktop $out/share/applications
|
|
cp stuff/nwg-look.svg $out/share/pixmaps
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/nwg-piotr/nwg-look";
|
|
description = "Nwg-look is a GTK3 settings editor, designed to work properly in wlroots-based Wayland environment.";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ max-amb ];
|
|
mainProgram = "nwg-look";
|
|
};
|
|
}
|