about summary refs log tree commit diff
path: root/pkgs/applications/misc/sc-im
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-04-01 18:11:15 +0200
committerRobert Schütz <dev@schuetz-co.de>2021-04-01 18:15:31 +0200
commitcce2c2be662c7c5c0124d5b77edda7c75de818a8 (patch)
tree7a6b66e6f0c9f8ae4a678f5285f39c1b95097f24 /pkgs/applications/misc/sc-im
parent04a2b269d8921505a2969fc9ec25c1f517f2b307 (diff)
sc-im: 0.8.0 -> 0.8.1
Diffstat (limited to 'pkgs/applications/misc/sc-im')
-rw-r--r--pkgs/applications/misc/sc-im/default.nix19
1 files changed, 2 insertions, 17 deletions
diff --git a/pkgs/applications/misc/sc-im/default.nix b/pkgs/applications/misc/sc-im/default.nix
index 523dc6aab83d0..9084aa0dff100 100644
--- a/pkgs/applications/misc/sc-im/default.nix
+++ b/pkgs/applications/misc/sc-im/default.nix
@@ -1,7 +1,6 @@
 { lib
 , stdenv
 , fetchFromGitHub
-, fetchpatch
 , makeWrapper
 , pkg-config
 , which
@@ -15,31 +14,17 @@
 
 stdenv.mkDerivation rec {
   pname = "sc-im";
-  version = "0.8.0";
+  version = "0.8.1";
 
   src = fetchFromGitHub {
     owner = "andmarti1424";
     repo = "sc-im";
     rev = "v${version}";
-    sha256 = "sha256-/eG2BdkyfEGoSzPu6jT+Bn1RZTGT1D3etGj1tYchm1M=";
+    sha256 = "sha256-AIYa3d1ml1f5GNLKijeFPX+UabgEqzdXiP60BGvBPsQ=";
   };
 
   sourceRoot = "${src.name}/src";
 
-  # make default colors readable on dark background
-  patches = [
-    (fetchpatch {
-      url = "https://github.com/andmarti1424/sc-im/commit/78d2fdaaf2c578691e68fb5bd773803cb967ddba.patch";
-      sha256 = "09716zsqa9qdsj2qpkji8wlzsmp9gl66ggvrg7lmrwwnvli2zn2w";
-    })
-    (fetchpatch {
-      url = "https://github.com/andmarti1424/sc-im/commit/f29d6605c8170febcec0dea7bda9613bee3b7011.patch";
-      sha256 = "1zs1sb23g0k6lig4d0qdzq1wdhcdzl424ch567zyjl191lyhsjyg";
-    })
-  ];
-
-  patchFlags = [ "-p2" ];
-
   nativeBuildInputs = [
     makeWrapper
     pkg-config