about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/jmtpfs
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-07-17 19:56:23 +0200
committerFelix Buehler <account@buehler.rocks>2021-07-18 00:19:24 +0200
commit87316d778be9234ada273c0892ce9788bd23ab9f (patch)
tree58ab70c7d52e4bf2221679f7f3937000dabc5337 /pkgs/tools/filesystems/jmtpfs
parenta314be4b4d6403df29c9fe3ed0cd92a39ffbcdb2 (diff)
various: cleanup of "inherit version;"
Diffstat (limited to 'pkgs/tools/filesystems/jmtpfs')
-rw-r--r--pkgs/tools/filesystems/jmtpfs/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/tools/filesystems/jmtpfs/default.nix b/pkgs/tools/filesystems/jmtpfs/default.nix
index 8589abffc77dd..2754d223a6baa 100644
--- a/pkgs/tools/filesystems/jmtpfs/default.nix
+++ b/pkgs/tools/filesystems/jmtpfs/default.nix
@@ -1,9 +1,8 @@
 { lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, file, fuse, libmtp }:
 
-let version = "0.5"; in
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
   pname = "jmtpfs";
-  inherit version;
+  version = "0.5";
 
   src = fetchFromGitHub {
     sha256 = "1pm68agkhrwgrplrfrnbwdcvx5lrivdmqw8pb5gdmm3xppnryji1";