54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildNimPackage,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
testers,
|
|
}:
|
|
|
|
buildNimPackage (finalAttrs: {
|
|
pname = "nimdow";
|
|
|
|
version = "0.7.40";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "avahe-kellenberger";
|
|
repo = "nimdow";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-Q+oUmQ2ABl2nOSnHJYCrqN7dees4JBZgkb9OF4XFr5M=";
|
|
};
|
|
|
|
lockFile = ./lock.json;
|
|
|
|
nimFlags = [
|
|
"--deepcopy:on"
|
|
];
|
|
|
|
postInstall = ''
|
|
install -D config.default.toml $out/share/nimdow/config.default.toml
|
|
install -D nimdow.desktop $out/share/applications/nimdow.desktop
|
|
'';
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/nimdowpkg/config/configloader.nim --replace "/usr/share/nimdow" "$out/share/nimdow"
|
|
'';
|
|
|
|
passthru.tests = {
|
|
nimdow = nixosTests.nimdow;
|
|
version = testers.testVersion {
|
|
package = finalAttrs.finalPackage;
|
|
version = "v${finalAttrs.version}";
|
|
};
|
|
};
|
|
|
|
meta =
|
|
with lib;
|
|
finalAttrs.src.meta
|
|
// {
|
|
description = "Nim based tiling window manager";
|
|
platforms = platforms.linux;
|
|
license = [ licenses.gpl2 ];
|
|
maintainers = [ maintainers.marcusramberg ];
|
|
mainProgram = "nimdow";
|
|
};
|
|
})
|