pkgs: fix pidcat

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-01-04 13:34:08 +05:30
parent da6b3b00f3
commit 3dd4f971ad
No known key found for this signature in database
GPG Key ID: 366D7BBAD1031E80

View File

@ -3,11 +3,13 @@ with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "pidcat";
version = "2.1.1";
# I already fixed it in the source
dontPatchShebangs = 1;
src = fetchFromGithub {
src = fetchFromGitHub {
owner = "msfjarvis";
repo = "pidcat";
rev = "2.1.1";
rev = "${version}";
sha256 = "0hbya1ksbp7vdsxa8290gw5sbr7si42hyhikahpd8qi1xmk446y8";
};