vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / qtile / config.nix
blob2536b9e2a8aeeff9cc7cfcf59ab8e1cd94eea7a8
1 { stdenvNoCC, fetchurl }:
2 stdenvNoCC.mkDerivation {
3   name = "qtile-config";
4   version = "0.0.1";
6   src = fetchurl {
7     url = "https://raw.githubusercontent.com/qtile/qtile/v0.28.1/libqtile/resources/default_config.py";
8     hash = "sha256-Y5W277CWVNSi4BdgEW/f7Px/MMjnN9W9TDqdOncVwPc=";
9   };
11   prePatch = ''
12     cp $src config.py
13   '';
15   patches = [ ./add-widget.patch ];
17   dontUnpack = true;
18   dontBuild = true;
20   installPhase = ''
21     mkdir -p $out
22     cp config.py $out/config.py
23   '';