Add the bspwm window manager to Nix.

This commit is contained in:
Matt Miemiec
2014-08-12 18:22:15 +02:00
committed by Peter Simons
parent 3a4fc75f52
commit 8695c58648
11 changed files with 188 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "sutils-0.1";
src = fetchurl {
url = "https://github.com/baskerville/sutils/archive/0.1.tar.gz";
sha256 = "0xqk42vl82chy458d64fj68a4md4bxaip8n3xw9skxz0a1sgvks8";
};
prePatch = ''sed -i "s@/usr/local@$out@" Makefile'';
meta = {
description = "Small command-line utilities.";
homepage = "https://github.com/baskerville/sutils";
maintainers = stdenv.lib.maintainers.meisternu;
license = "Custom";
platforms = stdenv.lib.platforms.linux;
};
}