nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

default.nix (570B)


      1 {
      2   lib,
      3   fetchFromGitHub,
      4   python3Packages,
      5 }:
      6 
      7 python3Packages.buildPythonApplication rec {
      8   pname = "px";
      9   version = "3.8.0";
     10   pyproject = true;
     11 
     12   src = fetchFromGitHub {
     13     owner = "walles";
     14     repo = "px";
     15     tag = version;
     16     hash = "sha256-cCTaDs/BYmL6Ql3kAzCk169M7JqenXeLhwsG1ErE2DI=";
     17   };
     18 
     19   build-system = with python3Packages; [ setuptools-scm ];
     20 
     21   meta = {
     22     description = "ps, top and pstree for human beings";
     23     homepage = "https://github.com/walles/px";
     24     license = lib.licenses.mit;
     25     maintainers = [ lib.maintainers.sikmir ];
     26   };
     27 }