treewide: rename bad filenames

Most of these can easily be moved to subdirectories of other
directories. This helps reduce clutter in the main trees.
This commit is contained in:
Matthew Bauer
2018-04-17 15:42:25 -05:00
parent 6bd83e624c
commit 1592e03aba
19 changed files with 17 additions and 17 deletions
+25
View File
@@ -0,0 +1,25 @@
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
name = "nagstamon-${version}";
version = "2.0.1";
src = fetchurl {
url = "https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz";
sha256 = "3d4b22190d47250b175a4a70b12391c694ba2399832320887e5909e1ce3dfd7b";
};
# Test assumes darwin
doCheck = false;
propagatedBuildInputs = with pythonPackages; [ configparser pyqt5 psutil requests
beautifulsoup4 ];
meta = with stdenv.lib; {
description = "A status monitor for the desktop";
homepage = https://nagstamon.ifw-dresden.de/;
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
inherit version;
};
}