diff options
author | Pascal Wittmann | 2015-11-17 21:29:29 +0100 |
---|---|---|
committer | Pascal Wittmann | 2015-11-17 21:30:43 +0100 |
commit | 7fd2796e994842e7c7998ad81d7815838b0226fe (patch) | |
tree | 3e2e0c16c76ee468e501fa91d9068004923a1a39 /pkgs/tools/filesystems | |
parent | 8ca605fccb1760e06cf79b2898e05b63848e434c (diff) |
Replace 'with plaforms; platform' with 'platforms.platform'
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r-- | pkgs/tools/filesystems/boxfs/default.nix | 2 | ||||
-rw-r--r-- | pkgs/tools/filesystems/ceph/generic.nix | 2 | ||||
-rw-r--r-- | pkgs/tools/filesystems/mp3fs/default.nix | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/filesystems/boxfs/default.nix b/pkgs/tools/filesystems/boxfs/default.nix index e82e720c11bd..30bb8d009a06 100644 --- a/pkgs/tools/filesystems/boxfs/default.nix +++ b/pkgs/tools/filesystems/boxfs/default.nix @@ -55,7 +55,7 @@ in stdenv.mkDerivation { ''; homepage = https://github.com/drotiro/boxfs2; license = licenses.gpl3; - platforms = with platforms; linux; + platforms = platforms.linux; maintainers = with maintainers; [ nckx ]; }; } diff --git a/pkgs/tools/filesystems/ceph/generic.nix b/pkgs/tools/filesystems/ceph/generic.nix index 8c169f131ed2..1673e69679b4 100644 --- a/pkgs/tools/filesystems/ceph/generic.nix +++ b/pkgs/tools/filesystems/ceph/generic.nix @@ -280,7 +280,7 @@ stdenv.mkDerivation { description = "Distributed storage system"; license = licenses.lgpl21; maintainers = with maintainers; [ ak wkennington ]; - platforms = with platforms; unix; + platforms = platforms.unix; }; passthru.version = version; diff --git a/pkgs/tools/filesystems/mp3fs/default.nix b/pkgs/tools/filesystems/mp3fs/default.nix index 8859aa003ebf..3b6b3c919cd7 100644 --- a/pkgs/tools/filesystems/mp3fs/default.nix +++ b/pkgs/tools/filesystems/mp3fs/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { ''; homepage = http://khenriks.github.io/mp3fs/; license = licenses.gpl3Plus; - platforms = with platforms; linux; + platforms = platforms.linux; maintainers = with maintainers; [ nckx ]; }; } |