lol

Merge pull request #115169 from fabaff/uroboros

uroboros: init at 20210304-9bed95b

authored by

Sandro and committed by
GitHub
7b74a67c 38cf5483

+28
+26
pkgs/tools/system/uroboros/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "uroboros"; 8 + version = "20210304-${lib.strings.substring 0 7 rev}"; 9 + rev = "9bed95bb4cc44cfd043e8ac192e788df379c7a44"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "evilsocket"; 13 + repo = pname; 14 + inherit rev; 15 + sha256 = "1a1bc2za2ppb7j7ibhykgxwivwmx7yq0593255jd55gl60r0l7i4"; 16 + }; 17 + 18 + vendorSha256 = "1ml3x00zzkwj1f76a4wk2y8z4bxjhadf2p1li96qjpnc8fgfd50l"; 19 + 20 + meta = with lib; { 21 + description = "Tool for monitoring and profiling single processes"; 22 + homepage = "https://github.com/evilsocket/uroboros"; 23 + license = with licenses; [ gpl3Only ]; 24 + maintainers = with maintainers; [ fab ]; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 25641 25641 25642 25642 urh = callPackage ../applications/radio/urh { }; 25643 25643 25644 + uroboros = callPackage ../tools/system/uroboros { }; 25645 + 25644 25646 uuagc = haskell.lib.justStaticExecutables haskellPackages.uuagc; 25645 25647 25646 25648 uucp = callPackage ../tools/misc/uucp { };