summary refs log tree commit diff
path: root/pkgs/applications/misc/chewing-editor
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2020-11-01 23:39:49 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-01 23:02:24 -0800
commit2c931312ce6c7baf91ec98e164bef0241fc20aa6 (patch)
tree6bf1c7d460aab2085256fd415e3f24734516683d /pkgs/applications/misc/chewing-editor
parentc6afa8820b528cec7e889e462cbcab84c0313b41 (diff)
downloadnixpkgs-2c931312ce6c7baf91ec98e164bef0241fc20aa6.tar
nixpkgs-2c931312ce6c7baf91ec98e164bef0241fc20aa6.tar.gz
nixpkgs-2c931312ce6c7baf91ec98e164bef0241fc20aa6.tar.bz2
nixpkgs-2c931312ce6c7baf91ec98e164bef0241fc20aa6.tar.lz
nixpkgs-2c931312ce6c7baf91ec98e164bef0241fc20aa6.tar.xz
nixpkgs-2c931312ce6c7baf91ec98e164bef0241fc20aa6.tar.zst
nixpkgs-2c931312ce6c7baf91ec98e164bef0241fc20aa6.zip
treewide: simplify rev/repo arguments in src
+ use fetchFromGithub where possible
Diffstat (limited to 'pkgs/applications/misc/chewing-editor')
-rw-r--r--pkgs/applications/misc/chewing-editor/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/chewing-editor/default.nix b/pkgs/applications/misc/chewing-editor/default.nix
index b70f9a2e7d8..3a89773b858 100644
--- a/pkgs/applications/misc/chewing-editor/default.nix
+++ b/pkgs/applications/misc/chewing-editor/default.nix
@@ -7,8 +7,8 @@ mkDerivation rec {
 
   src = fetchFromGitHub {
     owner = "chewing";
-    repo = "${pname}";
-    rev = "${version}";
+    repo = pname;
+    rev = version;
     sha256 = "0kc2hjx1gplm3s3p1r5sn0cyxw3k1q4gyv08q9r6rs4sg7xh2w7w";
   };