aboutsummaryrefslogtreecommitdiff
path: root/pkgs/os-specific/linux/hyperv-daemons/default.nix
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2019-08-13 21:52:01 +0000
committervolth <volth@volth.com>2019-08-28 11:07:32 +0000
commit08f68313a47a2093dc0f408a706b2c125bc59c95 (patch)
treebb48188c0bf9fac152c038426146df518ef8c562 /pkgs/os-specific/linux/hyperv-daemons/default.nix
parent5061fe0c2c7743370e1d379d6fa60eed26ff1470 (diff)
treewide: remove redundant rec
Diffstat (limited to '')
-rw-r--r--pkgs/os-specific/linux/hyperv-daemons/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/hyperv-daemons/default.nix b/pkgs/os-specific/linux/hyperv-daemons/default.nix
index 36ca1eb16b4..a209f1ab4bb 100644
--- a/pkgs/os-specific/linux/hyperv-daemons/default.nix
+++ b/pkgs/os-specific/linux/hyperv-daemons/default.nix
@@ -1,7 +1,7 @@
{ stdenv, lib, python, kernel, makeWrapper, writeText }:
let
- daemons = stdenv.mkDerivation rec {
+ daemons = stdenv.mkDerivation {
pname = "hyperv-daemons-bin";
inherit (kernel) src version;
@@ -54,7 +54,7 @@ let
WantedBy=hyperv-daemons.target
'';
-in stdenv.mkDerivation rec {
+in stdenv.mkDerivation {
pname = "hyperv-daemons";
inherit (kernel) version;