mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
32 lines
866 B
Nix
32 lines
866 B
Nix
{ lib, stdenv, fetchgit, xorgproto, libX11, libXft, customConfig ? null, patches ? [ ] }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "tabbed";
|
|
version = "0.7";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.suckless.org/tabbed";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-Y1MgPwqMUoa2Rr4HmqjtPaQegUmQJWYkcbyFcJHAOBI=";
|
|
};
|
|
|
|
inherit patches;
|
|
|
|
postPatch = lib.optionalString (customConfig != null) ''
|
|
cp ${builtins.toFile "config.h" customConfig} ./config.h
|
|
'';
|
|
|
|
buildInputs = [ xorgproto libX11 libXft ];
|
|
|
|
makeFlags = [ "CC:=$(CC)" ];
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://tools.suckless.org/tabbed";
|
|
description = "Simple generic tabbed fronted to xembed aware applications";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ vrthra ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|