summary refs log tree commit diff
path: root/pkgs/development/mobile
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-07-14 17:10:11 +0200
committerFelix Buehler <account@buehler.rocks>2021-07-16 00:17:12 +0200
commit1e9baed56b85263104f21170a1d2be315876a101 (patch)
tree903ccb3615c2b22ae30f5299af147e497d1b8bbf /pkgs/development/mobile
parentb141a58ff28c1b14fea9292dbcfe2a5af2da923c (diff)
downloadnixpkgs-1e9baed56b85263104f21170a1d2be315876a101.tar
nixpkgs-1e9baed56b85263104f21170a1d2be315876a101.tar.gz
nixpkgs-1e9baed56b85263104f21170a1d2be315876a101.tar.bz2
nixpkgs-1e9baed56b85263104f21170a1d2be315876a101.tar.lz
nixpkgs-1e9baed56b85263104f21170a1d2be315876a101.tar.xz
nixpkgs-1e9baed56b85263104f21170a1d2be315876a101.tar.zst
nixpkgs-1e9baed56b85263104f21170a1d2be315876a101.zip
various: cleanup of 'inherit version;'
Diffstat (limited to 'pkgs/development/mobile')
-rw-r--r--pkgs/development/mobile/abootimg/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/development/mobile/abootimg/default.nix b/pkgs/development/mobile/abootimg/default.nix
index bec022f08c7..3c7a2840e49 100644
--- a/pkgs/development/mobile/abootimg/default.nix
+++ b/pkgs/development/mobile/abootimg/default.nix
@@ -1,11 +1,8 @@
 { lib, stdenv, fetchFromGitHub, coreutils, cpio, findutils, gzip, makeWrapper, util-linux }:
 
-let
-  version = "0.6";
-in
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
   pname = "abootimg";
-  inherit version;
+  version = "0.6";
 
   src = fetchFromGitHub {
     owner = "ggrandou";