bsp-layout: init at unstable-2021-05-10

This commit is contained in:
Devin Singh 2021-05-29 09:30:10 -05:00
parent dd51c8eb0e
commit c844ab7eff
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub, lib, bspwm, makeWrapper, git, bc }:
stdenv.mkDerivation rec {
pname = "bsp-layout";
version = "unstable-2021-05-10";
src = fetchFromGitHub {
owner = "phenax";
repo = pname;
rev = "726b850b79eabdc6f4d236cff52e434848cb55e3";
sha256 = "1wqlzbz7l9vz37gin2zckrnxkkabnd7x5mi9pb0x96w4yhld5mx6";
};
nativeBuildInputs = [ makeWrapper git bc ];
buildInputs = [ bspwm ];
makeFlags = [ "PREFIX=$(out)" ];
postInstall = ''
substituteInPlace $out/bin/bsp-layout --replace 'bc ' '${bc}/bin/bc '
'';
meta = with lib; {
description = "Manage layouts in bspwm";
homepage = "https://github.com/phenax/bsp-layout";
license = licenses.mit;
maintainers = with maintainers; [ devins2518 ];
platforms = platforms.linux;
};
}

View file

@ -2008,6 +2008,8 @@ in
bottom-rs = callPackage ../tools/misc/bottom-rs { };
bsp-layout = callPackage ../tools/misc/bsp-layout {};
buildtorrent = callPackage ../tools/misc/buildtorrent { };
bustle = haskellPackages.bustle;